System.Web.Mvc.LocalizableWebViewPage.___ C# (CSharp) Method

___() public static method

@Alias GetRaw and FormatRaw

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

Warning! Neither the html nor the htmlArguments will be encoded whatsoever

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

Same methods

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