// Token: 0x06000C1E RID: 3102 RVA: 0x000263C5 File Offset: 0x000245C5
 public MailboxStoreObjectIdParameter(MailboxStoreObjectId storeObjectId)
 {
     if (null == storeObjectId)
     {
         throw new ArgumentNullException("storeObjectId");
     }
     this.rawIdentity = storeObjectId.ToString();
     ((IIdentityParameter)this).Initialize(storeObjectId);
 }
Example #2
0
 public MailboxAssociationIdParameter(MailboxStoreObjectId mailboxStoreObjectId) : this(mailboxStoreObjectId.ToString())
 {
 }