BindWithItemId static method

Future<Task> BindWithItemId(
  1. ExchangeService service,
  2. ItemId? id
)
Binds to an existing task and loads its first class 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.

Implementation

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