BindWithPropertySet static method

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

Implementation

static Future<Task> BindWithPropertySet(
    ExchangeService service, ItemId? id, PropertySet propertySet) {
  return service.BindToItemGeneric<Task>(id, propertySet);
}