コード例 #1
0
ファイル: FolderId.cs プロジェクト: YHZX2013/exchange_diff
 internal FolderId(MessageStoreId storeId, MapiEntryId entryId, MapiFolderPath folderPath, string legacyDn) : base(entryId)
 {
     this.messageStoreId          = storeId;
     this.mapiFolderPath          = folderPath;
     this.legacyDistinguishedName = legacyDn;
 }
コード例 #2
0
ファイル: FolderId.cs プロジェクト: YHZX2013/exchange_diff
 public FolderId(MessageStoreId storeId, MapiFolderPath folderPath)
 {
     this.messageStoreId = storeId;
     this.mapiFolderPath = folderPath;
 }
コード例 #3
0
ファイル: FolderId.cs プロジェクト: YHZX2013/exchange_diff
 public FolderId(MessageStoreId storeId, string legacyDn)
 {
     this.messageStoreId          = storeId;
     this.legacyDistinguishedName = legacyDn;
 }
コード例 #4
0
ファイル: FolderId.cs プロジェクト: YHZX2013/exchange_diff
 public FolderId(MessageStoreId storeId, MapiEntryId entryId) : base(entryId)
 {
     this.messageStoreId = storeId;
 }
コード例 #5
0
 internal MessageStore(MessageStoreId mapiObjectId, MapiSession mapiSession) : base(mapiObjectId, mapiSession)
 {
 }