BindWithFolderIdAndPropertySet static method

Future<ContactsFolder> BindWithFolderIdAndPropertySet(
  1. ExchangeService service,
  2. FolderId id,
  3. PropertySet propertySet
)
Binds to an existing contacts folder and loads the specified set of properties. The service to use to bind to the contacts folder. The Id of the contacts folder to bind to. The set of properties to load.

Implementation

static Future<ContactsFolder> BindWithFolderIdAndPropertySet(
    ExchangeService service, FolderId id, PropertySet propertySet) {
  return service.BindToFolderGeneric<ContactsFolder>(id, propertySet);
}