Click or drag to resize
MimeKit

HtmlUtilsHtmlAttributeEncode(String, Int32, Int32, Char) Method

Encode an HTML attribute value.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public static string HtmlAttributeEncode(
	string value,
	int startIndex,
	int count,
	char quote = '"'
)

Parameters

value  String
The attribute value to encode.
startIndex  Int32
The starting index of the attribute value.
count  Int32
The number of characters in the attribute value.
quote  Char  (Optional)
The character to use for quoting the attribute value.

Return Value

String
The encoded attribute value.
Exceptions
ExceptionCondition
ArgumentNullExceptionvalue is null.
ArgumentOutOfRangeExceptionstartIndex and count do not specify a valid range in the value.
ArgumentExceptionquote is not a valid quote character.
Remarks
Encodes an HTML attribute value.
See Also