Click or drag to resize
MimeKit

MimeEntityWriteTo(String, Boolean, CancellationToken) Method

Write the MimeEntity to the specified file.

Namespace: MimeKit
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public void WriteTo(
	string fileName,
	bool contentOnly,
	CancellationToken cancellationToken = default
)

Parameters

fileName  String
The file.
contentOnly  Boolean
true if only the content should be written; otherwise, false.
cancellationToken  CancellationToken  (Optional)
The cancellation token.
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
Writes the entity to the specified file using the default formatting options.
See Also