Exemple #1
0
 public MboxAccount()
 {
     _mailboxes = new ObservableCollection <MboxMailbox>()
     {
         new MboxMailbox(this)
     };
     Mailboxes = new ReturnTypeCollection <IMailbox> {
         UnderlyingCollection = _mailboxes
     };
     _mailboxes.CollectionChanged += MailboxesOnCollectionChanged;
 }
 protected ServerMailAccount()
 {
     Mailboxes = new ReturnTypeCollection <IMailbox>();
 }