ImapDownloadEntireMessageAsync Method |
Namespace: MailBee.ImapMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Task<MailMessage> DownloadEntireMessageAsync(
long messageIndex,
bool indexIsUid
)
Public Function DownloadEntireMessageAsync (
messageIndex As Long,
indexIsUid As Boolean
) As Task(Of MailMessage)
Parameters
- messageIndex
- Type: SystemInt64
The ordinal position or UID of the message in the currently selected folder
(for ordinal message numbers, can be negative, i.e. -1 denotes the last e-mail in the folder). - indexIsUid
- Type: SystemBoolean
If true, messageIndex is treated as UID; otherwise, as ordinal message number.
Return Value
Type:
TaskMailMessageA task that represents the asynchronous operation.
On success, the value of
TResult parameter is a
MailMessage object containing the entire message, including
the message header, all the body parts and attachments; otherwise, a null reference (
Nothing in Visual Basic).
Exceptions See Also