Remove method

bool Remove(
  1. Attendee attendee
)
Removes an attendee from the collection. The attendee to remove.

Implementation

bool Remove(Attendee attendee) {
  EwsUtilities.ValidateParam(attendee, "attendee");

  return this.InternalRemove(attendee);
}