Click or drag to resize
MimeKit

FolderAttributes Enumeration

Folder attributes as used by Attributes.

Namespace: MailKit
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
[FlagsAttribute]
public enum FolderAttributes
Members
Member nameValueDescription
None0 The folder does not have any attributes.
NoInferiors1 It is not possible for any subfolders to exist under the folder.
NoSelect2 It is not possible to select the folder.
Marked4 The folder has been marked as possibly containing new messages since the folder was last selected.
Unmarked8 The folder does not contain any new messages since the folder was last selected.
NonExistent16 The folder does not exist, but is simply a place-holder.
Subscribed32 The folder is subscribed.
Remote64 The folder is remote.
HasChildren128 The folder has subfolders.
HasNoChildren256 The folder does not have any subfolders.
All512 The folder is a special "All" folder containing an aggregate of all messages.
Archive1,024 The folder is a special "Archive" folder.
Drafts2,048 The folder is the special "Drafts" folder.
Flagged4,096 The folder is the special "Flagged" folder.
Important8,192 The folder is the special "Important" folder.
Inbox16,384 The folder is the special "Inbox" folder.
Junk32,768 The folder is the special "Junk" folder.
Sent65,536 The folder is the special "Sent" folder.
Trash131,072 The folder is the special "Trash" folder.
Remarks
Folder attributes as used by Attributes.
See Also