BindWithItemIdAndPropertySet static method

Future<Appointment> BindWithItemIdAndPropertySet(
  1. ExchangeService service,
  2. ItemId id,
  3. PropertySet propertySet
)
Binds to an existing appointment and loads the specified set of 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. The set of properties to load.

Implementation

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