Click or drag to resize
MimeKit

HtmlUtilsHtmlEncode(TextWriter, Char, Int32, Int32) Method

Encode HTML character data.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static void HtmlEncode(
	TextWriter output,
	char[] data,
	int startIndex,
	int count
)

Parameters

output  TextWriter
The TextWriter to output the result.
data  Char
The character data to encode.
startIndex  Int32
The starting index of the character data.
count  Int32
The number of characters in the data.
Exceptions
ExceptionCondition
ArgumentNullException

output is null.

-or-

data is null.

ArgumentOutOfRangeException

startIndex and count do not specify a valid range in the data.

Remarks
Encodes HTML character data.
See Also