BindWithItemId static method

Future<MeetingResponse> BindWithItemId(
  1. ExchangeService service,
  2. ItemId id
)
override
Binds to an existing meeting response and loads its first class properties. Calling this method results in a call to EWS. The service to use to bind to the meeting response. The Id of the meeting response to bind to.

Implementation

static Future<MeetingResponse> BindWithItemId(
    ExchangeService service, ItemId id) {
  return MeetingResponse.BindWithItemIdAndPropertySet(
      service, id, PropertySet.FirstClassProperties);
}