Click or drag to resize
MimeKit

IMailFolderExtensionsReplace(IMailFolder, FormatOptions, Int32, MimeMessage, MessageFlags, DateTimeOffset, CancellationToken, ITransferProgress) Method

Replace a message in the folder.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public static UniqueId? Replace(
	this IMailFolder folder,
	FormatOptions options,
	int index,
	MimeMessage message,
	MessageFlags flags,
	DateTimeOffset date,
	CancellationToken cancellationToken = default,
	ITransferProgress progress = null
)

Parameters

folder  IMailFolder
The folder.
options  FormatOptions
The formatting options.
index  Int32
The index of the message to be replaced.
message  MimeMessage
The message.
flags  MessageFlags
The message flags.
date  DateTimeOffset
The received date of the message.
cancellationToken  CancellationToken  (Optional)
The cancellation token.
progress  ITransferProgress  (Optional)
The progress reporting mechanism.

Return Value

NullableUniqueId
The UID of the new message, if available; otherwise, null.

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

options is null.

-or-

message is null.

ArgumentOutOfRangeExceptionindex is out of range.
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.
NotSupportedException

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

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
Replaces the specified message in the folder and returns the UniqueId assigned to the new message.
See Also