BindWithItemId static method

Future<MeetingCancellation> BindWithItemId(
  1. ExchangeService service,
  2. ItemId id
)
override
Binds to an existing meeting cancellation message and loads its first class 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.

Implementation

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