ImapSetSeenForEntireMessages Property
Specifies if MailBee should also set SEEN flag when downloading entire messages.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntax
public bool SetSeenForEntireMessages { get; set; }

Property Value

Type: Boolean
true if MailBee also sets SEEN flags when downloading entire messages; false if MailBee does not change message flags on downloading entire messages. The default value is true.
Remarks
The standard behavior of an IMAP client is to set SEEN flag when the message gets downloaded completely. You can override this with this property.
Note Note
This property affects only DownloadEntireMessage(Int64, Boolean) and DownloadEntireMessages(String, Boolean) methods. Methods like DownloadEnvelopes(String, Boolean, EnvelopeParts, Int32) do not depend on this property and provide their own means of controlling whether to set SEEN flag or not.
See Also