Click or drag to resize
MimeKit

HtmlWriterWriteText(String, Object) Method

Write text to the output stream, escaping special characters.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void WriteText(
	string format,
	params Object[] args
)

Parameters

format  String
A composit format string.
args  Object
An object array that contains zero or more objects to format.
Exceptions
ExceptionCondition
ArgumentNullException

format is null.

-or-

args is null.

ObjectDisposedException The HtmlWriter has been disposed.
Remarks
Writes text to the output stream, escaping special characters.
See Also