Table of Contents

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

DateTime

EnhancedLocation

Gets the Enhanced location object.

public EnhancedLocation EnhancedLocation { get; }

Property Value

EnhancedLocation

Location

Gets the location of this appointment.

public string Location { get; }

Property Value

string

ProposedEnd

Gets the proposed end time of the appointment.

public DateTime ProposedEnd { get; }

Property Value

DateTime

ProposedStart

Gets the proposed start time of the appointment.

public DateTime ProposedStart { get; }

Property Value

DateTime

Recurrence

Gets the recurrence pattern for this meeting request.

public Recurrence Recurrence { get; }

Property Value

Recurrence

Start

Gets the start time of the appointment.

public DateTime Start { get; }

Property Value

DateTime

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 ExchangeService

The service to use to bind to the meeting response.

id ItemId

The 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 ExchangeService

The service to use to bind to the meeting response.

id ItemId

The Id of the meeting response to bind to.

propertySet PropertySet

The set of properties to load.

Returns

MeetingResponse

A MeetingResponse instance representing the meeting response corresponding to the specified Id.