Bind static method

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

Implementation

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