ImapDownloadMessageHeadersAsync Method |
Namespace: MailBee.ImapMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Task<MailMessageCollection> DownloadMessageHeadersAsync(
string messageIndexSet,
bool indexIsUid
)
Public Function DownloadMessageHeadersAsync (
messageIndexSet As String,
indexIsUid As Boolean
) As Task(Of MailMessageCollection)
Parameters
- messageIndexSet
- Type: SystemString
A message sequence string containing ordinal message numbers or UIDs. Can be composed manually or using ToString. - indexIsUid
- Type: SystemBoolean
If true, messageIndexSet is treated as a sequence of UIDs; otherwise, as a sequence of ordinal message numbers.
Return Value
Type:
TaskMailMessageCollectionA task that represents the asynchronous operation.
On success, the value of
TResult parameter is a
MailMessageCollection containing the downloaded messages;
otherwise, a null reference (
Nothing in Visual Basic).
Exceptions See Also