Click or drag to resize
MimeKit

MimeEntityWriteTo(FormatOptions, Stream, Boolean, CancellationToken) Method

Write the MimeEntity to the specified output stream.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public virtual void WriteTo(
	FormatOptions options,
	Stream stream,
	bool contentOnly,
	CancellationToken cancellationToken = default
)

Parameters

options  FormatOptions
The formatting options.
stream  Stream
The output stream.
contentOnly  Boolean
true if only the content should be written; otherwise, false.
cancellationToken  CancellationToken  (Optional)
The cancellation token.
Exceptions
ExceptionCondition
ArgumentNullException

options is null.

-or-

stream is null.

ObjectDisposedException The MimeEntity has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
Remarks

Writes the headers to the output stream, followed by a blank line.

Subclasses should override this method to write the content of the entity.

See Also