Click or drag to resize
MimeKit

MimeEntityWriteToAsync(Stream, CancellationToken) Method

Asynchronously write the MimeEntity to the specified output stream.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public Task WriteToAsync(
	Stream stream,
	CancellationToken cancellationToken = default
)

Parameters

stream  Stream
The output stream.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

Task
An awaitable task.
Exceptions
ExceptionCondition
ArgumentNullExceptionstream is null.
ObjectDisposedException The MimeEntity has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
Remarks
Asynchronously writes the entity to the output stream.
See Also