Click or drag to resize
MimeKit

IMailFolderFetchAsync(IListUniqueId, IFetchRequest, CancellationToken) Method

Asynchronously fetch the message summaries for the specified message UIDs.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
Task<IList<IMessageSummary>> FetchAsync(
	IList<UniqueId> uids,
	IFetchRequest request,
	CancellationToken cancellationToken = default
)

Parameters

uids  IListUniqueId
The UIDs.
request  IFetchRequest
The fetch request.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIListIMessageSummary
An enumeration of summaries for the requested messages.
Remarks

Asynchronously fetches the message summaries for the specified message UIDs.

It should be noted that if another client has modified any message in the folder, the mail service may choose to return information that was not explicitly requested. It is therefore important to be prepared to handle both additional fields on a IMessageSummary for messages that were requested as well as summaries for messages that were not requested at all.

See Also