System.Web.Mvc.XSSHelper.Sanitize C# (CSharp) Method

Sanitize() public static method

public static Sanitize ( this helper, string input ) : string
helper this
input string
return string
        public static string Sanitize(this HtmlHelper helper, string input)
        {
            return AntiXss.GetSafeHtml(input);
        }