Bind static method

Future<MeetingCancellation> Bind(
  1. ExchangeService service,
  2. ItemId id,
  3. PropertySet propertySet
)
override
Binds to an existing meeting cancellation message and loads the specified set of properties. Calling this method results in a call to EWS. The service to use to bind to the meeting cancellation message. The Id of the meeting cancellation message to bind to. The set of properties to load.

Implementation

static Future<MeetingCancellation> Bind(
    ExchangeService service, ItemId id, PropertySet propertySet) {
  return service.BindToItemGeneric<MeetingCancellation>(id, propertySet);
}