Click or drag to resize
MimeKit

MimeEntityWriteToAsync(String, CancellationToken) Method

Asynchronously write the MimeEntity to the specified file.

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

Parameters

fileName  String
The file.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

Task
An awaitable task.
Exceptions
ExceptionCondition
ArgumentNullExceptionfileName is null.
ArgumentExceptionfileName is a zero-length string, contains only white space, or contains one or more invalid characters.
ObjectDisposedException The MimeEntity has been disposed.
OperationCanceledException The operation was canceled via the cancellation token.
DirectoryNotFoundExceptionfileName is an invalid file path.
FileNotFoundException The specified file path could not be found.
UnauthorizedAccessException The user does not have access to write to the specified file.
IOException An I/O error occurred.
Remarks
Asynchronously writes the entity to the specified file using the default formatting options.
See Also