Click or drag to resize
MimeKit

MailFolderReplaceAsync(UniqueId, IReplaceRequest, CancellationToken) Method

Asynchronously replace a message in the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public virtual Task<UniqueId?> ReplaceAsync(
	UniqueId uid,
	IReplaceRequest request,
	CancellationToken cancellationToken = default
)

Parameters

uid  UniqueId
The UID of the message to be replaced.
request  IReplaceRequest
The replace request.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskNullableUniqueId
The UID of the appended message, if available; otherwise, null.

Implements

IMailFolderReplaceAsync(UniqueId, IReplaceRequest, CancellationToken)
Exceptions
ExceptionCondition
ArgumentNullException

request is null.

ArgumentException

uid is invalid.

-or-

The destination folder does not belong to this IMailStore.

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.
FolderNotOpenException The MailFolder is not currently open in read-write mode.
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 server replied with a NO or BAD response.
Remarks
Asynchronously replaces a message in the folder and returns the UniqueId assigned to the new message.
See Also