AttendeeInfo Constructors

Definition

Overloads

AttendeeInfo()

Initializes a new instance of the AttendeeInfo class.

AttendeeInfo(String)

Initializes a new instance of the AttendeeInfo class by using the specified SMTP e-mail address.

AttendeeInfo(String, MeetingAttendeeType, Boolean)

Initializes a new instance of the AttendeeInfo class by using the specified SMTP address, attendee type, and conflict exclusions.

AttendeeInfo()

Initializes a new instance of the AttendeeInfo class.

public:
 AttendeeInfo();
public AttendeeInfo ();
Public Sub New ()

Applies to

AttendeeInfo(String)

Initializes a new instance of the AttendeeInfo class by using the specified SMTP e-mail address.

public:
 AttendeeInfo(System::String ^ smtpAddress);
public AttendeeInfo (string smtpAddress);
Public Sub New (smtpAddress As String)

Parameters

smtpAddress
String

The SMTP e-mail address of the attendee.

Applies to

AttendeeInfo(String, MeetingAttendeeType, Boolean)

Initializes a new instance of the AttendeeInfo class by using the specified SMTP address, attendee type, and conflict exclusions.

public:
 AttendeeInfo(System::String ^ smtpAddress, Microsoft::Exchange::WebServices::Data::MeetingAttendeeType attendeeType, bool excludeConflicts);
public AttendeeInfo (string smtpAddress, Microsoft.Exchange.WebServices.Data.MeetingAttendeeType attendeeType, bool excludeConflicts);
Public Sub New (smtpAddress As String, attendeeType As MeetingAttendeeType, excludeConflicts As Boolean)

Parameters

smtpAddress
String

The SMTP address of the attendee.

attendeeType
MeetingAttendeeType

One of MeetingAttendeeType the enumeration values that specifies the type of the attendee.

excludeConflicts
Boolean

Indicates whether to exclude attendee conflicts. true to indicate that times when the attendee is not available are excluded; otherwise, false.

Applies to