MailBeeImapInvalidEnvelopeExceptionInvalidEnvelope Property |
Gets the invalid envelope which could not parsed.
Namespace: MailBee.ImapMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public Envelope InvalidEnvelope { get; }
Public ReadOnly Property InvalidEnvelope As Envelope
Get
Property Value
Type:
EnvelopeA reference to the
Envelope object representing the FETCH
response which could not be completely parsed.
Remarks Methods which download mail messages (such as
DownloadEntireMessages(String, Boolean))
internally call
DownloadEnvelopes(String, Boolean, EnvelopeParts, Int32, String, String) to get envelopes, and then
return mail messages by extracting them from
MessagePreview
property of the
Envelope objects. Thus,
MailBeeImapInvalidEnvelopeException
can be thrown not only with
DownloadEnvelopes(String, Boolean, EnvelopeParts, Int32, String, String) methods, but also with the methods
which download entire messages or message headers, including
DownloadEntireMessage(Int64, Boolean),
DownloadMessageHeaders(String, Boolean), etc.
See Also