AttendeeCollection.Add Method

Definition

Overloads

Add(Attendee)

Adds an attendee to the collection.

Add(String)

Adds an attendee to the collection.

Add(String, String)

Adds an attendee to the collection.

Add(Attendee)

Adds an attendee to the collection.

public:
 void Add(Microsoft::Exchange::WebServices::Data::Attendee ^ attendee);
public void Add (Microsoft.Exchange.WebServices.Data.Attendee attendee);

Parameters

attendee
Attendee

The attendee to add to the collection.

Applies to

Add(String)

Adds an attendee to the collection.

public:
 Microsoft::Exchange::WebServices::Data::Attendee ^ Add(System::String ^ smtpAddress);
public Microsoft.Exchange.WebServices.Data.Attendee Add (string smtpAddress);
Public Function Add (smtpAddress As String) As Attendee

Parameters

smtpAddress
String

The SMTP address of the attendee to add to the collection.

Returns

An instance of the Attendee class that is initialized with the provided SMTP address.

Applies to

Add(String, String)

Adds an attendee to the collection.

public:
 Microsoft::Exchange::WebServices::Data::Attendee ^ Add(System::String ^ name, System::String ^ smtpAddress);
public Microsoft.Exchange.WebServices.Data.Attendee Add (string name, string smtpAddress);
Public Function Add (name As String, smtpAddress As String) As Attendee

Parameters

name
String

The name of the attendee to add to the collection.

smtpAddress
String

The SMTP address of the attendee to add to the collection.

Returns

An instance of the Attendee class that is initialized with the provided name and SMTP address.

Applies to