コード例 #1
0
ファイル: MAPIMsgStore.cs プロジェクト: SeregaPru/metrohome65
 public MAPIMsgStore(MAPI parent, cemapi.IMsgStore msgStore, cemapi.IMAPISession session)
     : base(msgStore, session)
 {
     this.msgStore = msgStore; this.parent = parent; this.session = session;
 }
コード例 #2
0
ファイル: MAPI.cs プロジェクト: SeregaPru/metrohome65
 public MAPI()
 {
     this.session = cemapi.MAPILogon();
 }
コード例 #3
0
ファイル: MAPIMsgStore.cs プロジェクト: SeregaPru/metrohome65
 private MAPIMsgStoreID(IEntryID id, MAPI parent, cemapi.IMAPISession session)
     : base(id, session)
 {
     this.parent = parent; this.session = session;
 }
コード例 #4
0
ファイル: MAPIMsgStore.cs プロジェクト: SeregaPru/metrohome65
 public MAPIMsgStoreID(byte[] id, MAPI parent, cemapi.IMAPISession session)
     : base(id, session)
 {
     this.parent = parent; this.session = session;
 }
コード例 #5
0
ファイル: MAPIProp.cs プロジェクト: SeregaPru/metrohome65
 public MAPIProp(cemapi.IMAPIProp instance, cemapi.IMAPISession parent)
 {
     this.instance = instance; this.parent = parent;
 }
コード例 #6
0
ファイル: EntryID.cs プロジェクト: SeregaPru/metrohome65
 protected EntryID(IEntryID id, cemapi.IMAPISession owner)
 {
     this.id = id.AsByteArray; this.owner = owner;
 }
コード例 #7
0
ファイル: EntryID.cs プロジェクト: SeregaPru/metrohome65
 //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;
 }