Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Encodes the specified string as a text string to be enclosed in HTML tags, or as an attribute value inside an HTML tag, and appends it to the specified output stream.
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: Yes
Available in SharePoint Online
Syntax
'Declaration
Public Shared Sub HtmlEncode ( _
valueToEncode As String, _
output As TextWriter _
)
'Usage
Dim valueToEncode As String
Dim output As TextWriterSPHttpUtility.HtmlEncode(valueToEncode, output)
public static void HtmlEncode(
string valueToEncode,
TextWriter output
)
Parameters
valueToEncode
Type: System.StringThe string to be encoded.
output
Type: System.IO.TextWriterA T:System.IO.TextWriter object that represents the output stream to which to add the encoded string.
Remarks
This method escapes the ampersand (&), double-quote (“), single-quote (‘), less-than (<), and greater-than (>) characters in the valueToEncode parameter with the appropriate entity references before and appends the result to the output stream as specified by the output parameter.