Click or drag to resize
MimeKit

IMailFolderExtensionsFetchAsync(IMailFolder, Int32, Int32, UInt64, MessageSummaryItems, IEnumerableString, CancellationToken) Method

Asynchronously fetch the message summaries for the messages between the two indexes (inclusive) that have a higher mod-sequence value than the one specified.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
public static Task<IList<IMessageSummary>> FetchAsync(
	this IMailFolder folder,
	int min,
	int max,
	ulong modseq,
	MessageSummaryItems items,
	IEnumerable<string> headers,
	CancellationToken cancellationToken = default
)

Parameters

folder  IMailFolder
The folder.
min  Int32
The minimum index.
max  Int32
The maximum index, or -1 to specify no upper bound.
modseq  UInt64
The mod-sequence value.
items  MessageSummaryItems
The message summary items to fetch.
headers  IEnumerableString
The desired header fields.
cancellationToken  CancellationToken  (Optional)
The cancellation token.

Return Value

TaskIListIMessageSummary
An enumeration of summaries for the requested messages.

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
ArgumentOutOfRangeException

min is out of range.

-or-

max is out of range.

ArgumentNullExceptionheaders is null.
ObjectDisposedException The IMailStore has been disposed.
ServiceNotConnectedException The IMailStore is not connected.
ServiceNotAuthenticatedException The IMailStore is not authenticated.
FolderNotOpenException The folder is not currently open.
OperationCanceledException The operation was canceled via the cancellation token.
IOException An I/O error occurred.
ProtocolException The server's response contained unexpected tokens.
CommandException The command failed.
Remarks

Asynchronously fetches the message summaries for the messages between the two indexes (inclusive) that have a higher mod-sequence value than the one specified.

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