Beispiel #1
0
 public Attendee this[RecipientId id]
 {
     get
     {
         throw new NotImplementedException();
     }
 }
 public virtual DistributionListMember this[RecipientId id]
 {
     get
     {
         throw new NotImplementedException();
     }
 }
Beispiel #3
0
 public DistributionListMember this[RecipientId id]
 {
     get
     {
         this.CheckDisposed("this[RecipientBaseId]::get");
         throw new NotSupportedException();
     }
 }
Beispiel #4
0
 internal int IndexOf(RecipientId id)
 {
     this.CheckDisposed(null);
     for (int i = 0; i < this.recipientList.Count; i++)
     {
         CoreRecipient coreRecipient = this.recipientList[i];
         if (coreRecipient.Id.Equals(id))
         {
             return(i);
         }
     }
     return(-1);
 }
Beispiel #5
0
 public void Remove(RecipientId id)
 {
     throw new NotImplementedException();
 }
Beispiel #6
0
 public override void Remove(RecipientId id)
 {
     this.LocationIdentifierHelperInstance.SetLocationIdentifier(65397U);
     base.Remove(id);
 }
Beispiel #7
0
 public void Remove(RecipientId id)
 {
     this.CheckDisposed("Remove(RecipientId)");
     throw new NotSupportedException();
 }