Click or drag to resize
MimeKit

IMailFolderReplaceAsync(Int32, IReplaceRequest, CancellationToken) Method

Asynchronously replace a message in the folder.

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

Parameters

index  Int32
The index 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.
Remarks
Asynchronously replaces a message in the folder and returns the UniqueId assigned to the new message.
See Also