| IMailFolderExtensionsAppend(IMailFolder, MimeMessage, MessageFlags, NullableDateTimeOffset, IListAnnotation, CancellationToken, ITransferProgress) Method |
Append the specified message to the folder.
Namespace: MailKitAssembly: MailKit (in MailKit.dll) Version: 4.7.1
Syntax public static UniqueId? Append(
this IMailFolder folder,
MimeMessage message,
MessageFlags flags,
DateTimeOffset? date,
IList<Annotation> annotations,
CancellationToken cancellationToken = default,
ITransferProgress progress = null
)
Parameters
- folder IMailFolder
- The folder.
- message MimeMessage
- The message.
- flags MessageFlags
- The message flags.
- date NullableDateTimeOffset
- The received date of the message.
- annotations IListAnnotation
- The message annotations.
- cancellationToken CancellationToken (Optional)
- The cancellation token.
- progress ITransferProgress (Optional)
- The progress reporting mechanism.
Return Value
NullableUniqueIdThe UID of the appended 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 Remarks
Appends the specified message to the folder and returns the UniqueId assigned to the message.
See Also