Class MeetingResponse
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents a response to a meeting request. Properties available on meeting messages are defined in the MeetingMessageSchema class.
public class MeetingResponse : MeetingMessage
- Inheritance
-
MeetingResponse
- Inherited Members
Properties
End
Gets the end time of the appointment.
public DateTime End { get; }
Property Value
EnhancedLocation
Gets the Enhanced location object.
public EnhancedLocation EnhancedLocation { get; }
Property Value
Location
Gets the location of this appointment.
public string Location { get; }
Property Value
ProposedEnd
Gets the proposed end time of the appointment.
public DateTime ProposedEnd { get; }
Property Value
ProposedStart
Gets the proposed start time of the appointment.
public DateTime ProposedStart { get; }
Property Value
Recurrence
Gets the recurrence pattern for this meeting request.
public Recurrence Recurrence { get; }
Property Value
Start
Gets the start time of the appointment.
public DateTime Start { get; }
Property Value
Methods
Bind(ExchangeService, ItemId)
Binds to an existing meeting response and loads its first class properties. Calling this method results in a call to EWS.
public static MeetingResponse Bind(ExchangeService service, ItemId id)
Parameters
service
ExchangeServiceThe service to use to bind to the meeting response.
id
ItemIdThe Id of the meeting response to bind to.
Returns
- MeetingResponse
A MeetingResponse instance representing the meeting response corresponding to the specified Id.
Bind(ExchangeService, ItemId, PropertySet)
Binds to an existing meeting response and loads the specified set of properties. Calling this method results in a call to EWS.
public static MeetingResponse Bind(ExchangeService service, ItemId id, PropertySet propertySet)
Parameters
service
ExchangeServiceThe service to use to bind to the meeting response.
id
ItemIdThe Id of the meeting response to bind to.
propertySet
PropertySetThe set of properties to load.
Returns
- MeetingResponse
A MeetingResponse instance representing the meeting response corresponding to the specified Id.