Class AttendeeInfo
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents information about an attendee for which to request availability information.
public sealed class AttendeeInfo
- Inheritance
-
AttendeeInfo
- Inherited Members
Constructors
AttendeeInfo()
Initializes a new instance of the AttendeeInfo class.
public AttendeeInfo()
AttendeeInfo(string)
Initializes a new instance of the AttendeeInfo class.
public AttendeeInfo(string smtpAddress)
Parameters
smtpAddress
stringThe SMTP address of the attendee.
AttendeeInfo(string, MeetingAttendeeType, bool)
Initializes a new instance of the AttendeeInfo class.
public AttendeeInfo(string smtpAddress, MeetingAttendeeType attendeeType, bool excludeConflicts)
Parameters
smtpAddress
stringThe SMTP address of the attendee.
attendeeType
MeetingAttendeeTypeThe yype of the attendee.
excludeConflicts
boolIndicates whether times when this attendee is not available should be returned.
Properties
AttendeeType
Gets or sets the type of this attendee.
public MeetingAttendeeType AttendeeType { get; set; }
Property Value
ExcludeConflicts
Gets or sets a value indicating whether times when this attendee is not available should be returned.
public bool ExcludeConflicts { get; set; }
Property Value
SmtpAddress
Gets or sets the SMTP address of this attendee.
public string SmtpAddress { get; set; }
Property Value
Operators
implicit operator AttendeeInfo(string)
Defines an implicit conversion between a string representing an SMTP address and AttendeeInfo.
public static implicit operator AttendeeInfo(string smtpAddress)
Parameters
smtpAddress
stringThe SMTP address to convert to AttendeeInfo.
Returns
- AttendeeInfo
An AttendeeInfo initialized with the specified SMTP address.