Click or drag to resize
MimeKit

MimeMessageWriteTo(FormatOptions, Stream, Boolean, CancellationToken) Method

Write the message to the specified output stream.

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

Parameters

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

options is null.

-or-

stream is null.

OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
Remarks
Writes the message to the output stream using the provided formatting options.
See Also