BindWithItemId static method

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

Implementation

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