Click or drag to resize
MimeKit

HtmlWriterWriteMarkupText(Char, Int32, Int32) Method

Write a buffer containing HTML markup directly to the output, without escaping special characters.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void WriteMarkupText(
	char[] buffer,
	int index,
	int count
)

Parameters

buffer  Char
The buffer containing HTML markup.
index  Int32
The index of the first character to write.
count  Int32
The number of characters to write.
Exceptions
ExceptionCondition
ArgumentNullExceptionbuffer is null.
ArgumentOutOfRangeException

index is less than zero or greater than the length of buffer.

-or-

index and count do not specify a valid range in the buffer.

ObjectDisposedException The HtmlWriter has been disposed.
Remarks
Writes a buffer containing HTML markup directly to the output, without escaping special characters.
See Also