System.Globalization.I18N.GetRaw C# (CSharp) Method

GetRaw() public static method

@Alias ___ (3 underscores) 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 GetRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString
culture this The culture being extended
html string The html to be translated
return System.Web.Mvc.MvcHtmlString
        public static MvcHtmlString GetRaw(this CultureInfo culture, string html, params object[] htmlArguments)
        {
            return ___(culture, html, htmlArguments);
        }

Same methods

I18N::GetRaw ( this culture, string html, object>.Func escapeArgumentFunc ) : System.Web.Mvc.MvcHtmlString