Click or drag to resize
MimeKit

IMailFolderExtensionsAppendAsync(IMailFolder, IListMimeMessage, IListMessageFlags, IListDateTimeOffset, CancellationToken, ITransferProgress) Method

Asynchronously append the specified messages to the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public static Task<IList<UniqueId>> AppendAsync(
	this IMailFolder folder,
	IList<MimeMessage> messages,
	IList<MessageFlags> flags,
	IList<DateTimeOffset> dates,
	CancellationToken cancellationToken = default,
	ITransferProgress progress = null
)

Parameters

folder  IMailFolder
The folder.
messages  IListMimeMessage
The array of messages to append to the folder.
flags  IListMessageFlags
The message flags to use for each of the messages.
dates  IListDateTimeOffset
The received dates to use for each of the messages.
cancellationToken  CancellationToken  (Optional)
The cancellation token.
progress  ITransferProgress  (Optional)
The progress reporting mechanism.

Return Value

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IMailFolder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullException

messages is null.

-or-

flags is null.

-or-

dates is null.

ArgumentException

One or more of the messages is null.

-or-

The number of messages, flags, and dates do not match.

ObjectDisposedException The IMailStore has been disposed.
ServiceNotConnectedException The IMailStore is not connected.
ServiceNotAuthenticatedException The IMailStore is not authenticated.
FolderNotFoundException The MailFolder does not exist.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
ProtocolException The server's response contained unexpected tokens.
CommandException The command failed.
Remarks
Asynchronously appends the specified messages to the folder and returns the UniqueIds assigned to the messages.
See Also