Beispiel #1
0
 internal Folder(string path, IEnumerable <string> flags, ref Folder parent, ImapClient client)
 {
     _path = path;
     _name = ImapUTF7.Decode(_path.Split(client.Behavior.FolderDelimeter).Last());
     UpdateFlags(flags);
     _parent      = parent;
     _client      = client;
     GMailThreads = new GMailThreadCollection();
 }
Beispiel #2
0
 internal Folder(string path, IEnumerable<string> flags, ref Folder parent, ImapClient client)
 {
     _path = path;
     _name = ImapUTF7.Decode(_path.Split(client.Behavior.FolderDelimeter).Last());
     UpdateFlags(flags);
     _parent = parent;
     _client = client;
     GMailThreads = new GMailThreadCollection();
 }