예제 #1
0
 public MailboxAuditLogRecord(MailboxAuditLogRecordId identity, string mailboxResolvedName, string guid, DateTime?lastAccessed) : this()
 {
     if (identity == null)
     {
         throw new ArgumentNullException("identity");
     }
     if (string.IsNullOrEmpty(mailboxResolvedName))
     {
         throw new ArgumentNullException("mailbox resolved name");
     }
     this.propertyBag[SimpleProviderObjectSchema.Identity] = identity;
     this.MailboxResolvedOwnerName = ((mailboxResolvedName == null) ? null : mailboxResolvedName);
     this.MailboxGuid  = guid;
     this.LastAccessed = lastAccessed;
 }
 // Token: 0x060057EE RID: 22510 RVA: 0x00139F7F File Offset: 0x0013817F
 public MailboxAuditLogEvent(MailboxAuditLogRecordId identity, string mailboxResolvedName, string guid, DateTime?lastAccessed) : base(identity, mailboxResolvedName, guid, lastAccessed)
 {
 }