System.Web.Mvc.LocalizableWebViewPage.FormatRaw C# (CSharp) 메소드

FormatRaw() 공개 정적인 메소드

@Alias ___ (3 underscores) and GetRaw

Translates the given html applying string.Format(html, htmlArguments) to the current culture language.

For each argument the escape func will be called before applying the format

public static FormatRaw ( string html ) : System.Web.Mvc.MvcHtmlString
html string The html to be translated
리턴 System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString FormatRaw(string html, params object[] htmlArguments)
        {
            return CultureInfo.CurrentUICulture.___(html, htmlArguments);
        }

Same methods

LocalizableWebViewPage::FormatRaw ( string html, object>.Func escapeArgumentFunc ) : System.Web.Mvc.MvcHtmlString