BindWithItemId static method

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

Implementation

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