Pop3DownloadMessageHeadersAsync Method (Int32, Int32, Int32)

Namespace: MailBee.Pop3Mail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Task<MailMessageCollection> DownloadMessageHeadersAsync(
	int startIndex,
	int count,
	int bodyLineCount
)

Parameters

startIndex
Type: SystemInt32
The ordinal position (in the inbox) of the first message in the range to be downloaded.
count
Type: SystemInt32
Number of messages to be downloaded, or -1 to indicate that all messages in the range startIndex to InboxMessageCount must be downloaded.
bodyLineCount
Type: SystemInt32
Number of lines of the message source body to download in addition to the message source header, or -1 to download the entire messages.

Return Value

Type: TaskMailMessageCollection
A task that represents the asynchronous operation. On success, the value of TResult parameter is a MailMessageCollection object containing the downloaded message headers; otherwise, a null reference (Nothing in Visual Basic).
Exceptions
ExceptionCondition
MailBeeExceptionAn error occurred and ThrowExceptions is true.
See Also