 | FolderAccess Enumeration |
A folder access mode.
Namespace:
MailKit
Assembly:
MailKit (in MailKit.dll) Version: 3.0.0
Syntax
Members
| Member name | Value | Description |
---|
| None | 0 |
The folder is not open.
|
| ReadOnly | 1 |
The folder is read-only.
|
| ReadWrite | 2 |
The folder is read/write.
|
Remarks
A folder access mode.
Examplespublic static void DownloadMessages ()
{
using (var client = new ImapClient ()) {
client.Connect ("imap.gmail.com", 993, SecureSocketOptions.SslOnConnect);
client.Authenticate ("username", "password");
client.Inbox.Open (FolderAccess.ReadOnly);
var uids = client.Inbox.Search (SearchQuery.All);
foreach (var uid in uids) {
var message = client.Inbox.GetMessage (uid);
message.WriteTo (string.Format ("{0}.eml", uid));
}
client.Disconnect (true);
}
}
See Also