Beispiel #1
0
 public MAPIMsgStore(MAPI parent, cemapi.IMsgStore msgStore, cemapi.IMAPISession session)
     : base(msgStore, session)
 {
     this.msgStore = msgStore; this.parent = parent; this.session = session;
 }
Beispiel #2
0
 public MAPI()
 {
     this.session = cemapi.MAPILogon();
 }
Beispiel #3
0
 private MAPIMsgStoreID(IEntryID id, MAPI parent, cemapi.IMAPISession session)
     : base(id, session)
 {
     this.parent = parent; this.session = session;
 }
Beispiel #4
0
 public MAPIMsgStoreID(byte[] id, MAPI parent, cemapi.IMAPISession session)
     : base(id, session)
 {
     this.parent = parent; this.session = session;
 }
Beispiel #5
0
 public MAPIProp(cemapi.IMAPIProp instance, cemapi.IMAPISession parent)
 {
     this.instance = instance; this.parent = parent;
 }
Beispiel #6
0
 protected EntryID(IEntryID id, cemapi.IMAPISession owner)
 {
     this.id = id.AsByteArray; this.owner = owner;
 }
Beispiel #7
0
 //public EntryID(IEntryID id, cemapi.IMAPISession owner) { this.owner = owner; this.id = id.AsByteArray; }
 public EntryID(byte[] id, cemapi.IMAPISession owner)
 {
     this.id = id; this.owner = owner;
 }