Bind static method

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

Implementation

static Future<MeetingRequest> Bind(ExchangeService service, ItemId id) {
  return MeetingRequest.BindItemIdAndPropertySet(
      service, id, PropertySet.FirstClassProperties);
}