Click or drag to resize
MimeKit

MessagePartWriteTo(FormatOptions, Stream, Boolean, CancellationToken) Method

Write the MessagePart to the output stream.

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

Parameters

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

Implements

IMimeEntityWriteTo(FormatOptions, Stream, Boolean, CancellationToken)
IMimeEntityWriteTo(FormatOptions, Stream, Boolean, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullException

options is .

-or-

stream is .

ObjectDisposedException The MessagePart has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
Remarks
Writes the MIME entity and its message to the output stream.
See Also