AddWithSmtpAddress method

Attendee AddWithSmtpAddress(
  1. String smtpAddress
)
Adds a attendee to the collection. The SMTP address of the attendee.

Implementation

Attendee AddWithSmtpAddress(String smtpAddress) {
  Attendee result = new Attendee(smtpAddress: smtpAddress);

  this.InternalAdd(result);

  return result;
}