Beispiel #1
0
 internal FolderId(MessageStoreId storeId, MapiEntryId entryId, MapiFolderPath folderPath, string legacyDn) : base(entryId)
 {
     this.messageStoreId          = storeId;
     this.mapiFolderPath          = folderPath;
     this.legacyDistinguishedName = legacyDn;
 }
Beispiel #2
0
 public FolderId(MessageStoreId storeId, MapiFolderPath folderPath)
 {
     this.messageStoreId = storeId;
     this.mapiFolderPath = folderPath;
 }
Beispiel #3
0
 public FolderId(MessageStoreId storeId, string legacyDn)
 {
     this.messageStoreId          = storeId;
     this.legacyDistinguishedName = legacyDn;
 }
Beispiel #4
0
 public FolderId(MessageStoreId storeId, MapiEntryId entryId) : base(entryId)
 {
     this.messageStoreId = storeId;
 }
Beispiel #5
0
 internal MessageStore(MessageStoreId mapiObjectId, MapiSession mapiSession) : base(mapiObjectId, mapiSession)
 {
 }