Click or drag to resize
MimeKit

MailFolderAppendAsync(IListIAppendRequest, CancellationToken) Method

Asynchronously append multiple messages to the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public virtual Task<IList<UniqueId>> AppendAsync(
	IList<IAppendRequest> requests,
	CancellationToken cancellationToken = default
)

Parameters

requests  IListIAppendRequest
The append requests.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIListUniqueId
The UIDs of the appended messages, if available; otherwise an empty array.

Implements

IMailFolderAppendAsync(IListIAppendRequest, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullExceptionrequests is null.
ArgumentException One or more of the requests is null.
ObjectDisposedException The IMailStore has been disposed.
ServiceNotConnectedException The IMailStore is not connected.
ServiceNotAuthenticatedException The IMailStore is not authenticated.
InvalidOperationException Internationalized formatting was requested but has not been enabled.
FolderNotFoundException The MailFolder does not exist.
OperationCanceledException The operation was canceled via the cancellation token.
NotSupportedException

Internationalized formatting was requested but is not supported by the server.

-or-

One ore more requests included annotations but the folder does not support annotations.

IOException An I/O error occurred.
ProtocolException The server's response contained unexpected tokens.
CommandException The command failed.
Remarks
Asynchronously appends multiple messages to the folder and returns the UniqueIds assigned to the messages.
See Also