Pop3EnableLastDownloaded Property
Gets or sets whether MailBee should save currently downloaded messages in LastDownloadedMessages property.

Namespace: MailBee.Pop3Mail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public bool EnableLastDownloaded { get; set; }

Property Value

Type: Boolean
If true, any method of Pop3 component which receives mail messages or message headers (RETR or TOP responses) from the server (like DownloadEntireMessages(Int32, Int32), DownloadMessageHeaders(Int32, Int32, Int32), DownloadEntireMessage(Int32), and DownloadMessageHeader(Int32)) will populate LastDownloadedMessages collection with MailMessage objects received and parsed during the method execution; if false, LastDownloadedMessages property will always return a null reference (Nothing in Visual Basic). The default value is false.
See Also