Bind static method

Future<Item> Bind(
  1. ExchangeService service,
  2. ItemId id
)
Binds to an existing item, whatever its actual type is, and loads its first class properties. Calling this method results in a call to EWS. The service to use to bind to the item. The Id of the item to bind to.

Implementation

static Future<Item> Bind(ExchangeService service, ItemId id) {
  return Item.BindWithPropertySet(
      service, id, PropertySet.FirstClassProperties);
}