Sanitizes input HTML document for safe display on browser.
Namespace: Microsoft.Security.Application
Assembly: HtmlSanitizationLibrary (in HtmlSanitizationLibrary.dll) Version: 4.2.0.0
Syntax
C# |
---|
public static string GetSafeHtml( string input ) |
Visual Basic |
---|
Public Shared Function GetSafeHtml ( _ input As String _ ) As String |
Visual C++ |
---|
public: static String^ GetSafeHtml( String^ input ) |
Parameters
- input
- Type: System..::..String
Malicious HTML Document
Return Value
A santizied HTML documentRemarks
The method transforms and filters HTML of executable scripts.
A safe list of tags and attributes are used to strip dangerous
scripts from the HTML. HTML is also normalized where tags are
properly closed and attributes are properly formatted.