BindWithItemId static method

Future<MeetingMessage> BindWithItemId(
  1. ExchangeService service,
  2. ItemId id
)
override
Binds to an existing meeting 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 message. The Id of the meeting message to bind to.

Implementation

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