| IMailFolderStoreAsync(IListInt32, UInt64, IListAnnotation, CancellationToken) Method |
Asynchronously store the annotations for the specified messages only if their mod-sequence value is less than the specified value.
Namespace: MailKitAssembly: MailKit (in MailKit.dll) Version: 4.7.1
Syntax Task<IList<int>> StoreAsync(
IList<int> indexes,
ulong modseq,
IList<Annotation> annotations,
CancellationToken cancellationToken = default
)
Parameters
- indexes IListInt32
- The indexes of the messages.
- modseq UInt64
- The mod-sequence value.
- annotations IListAnnotation
- The annotations to store.
- cancellationToken CancellationToken (Optional)
- The cancellation token.
Return Value
TaskIListInt32The indexes of the messages that were not updated.
Remarks
Asynchronously stores the annotations for the specified messages only if their mod-sequence value is less than the specified value.s
See Also