BindWithWellKnownFolderAndPropertySet static method

Future<ContactsFolder> BindWithWellKnownFolderAndPropertySet(
  1. ExchangeService service,
  2. WellKnownFolderName name,
  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 name of the contacts folder to bind to. The set of properties to load.

Implementation

static Future<ContactsFolder> BindWithWellKnownFolderAndPropertySet(
    ExchangeService service,
    WellKnownFolderName name,
    PropertySet propertySet) {
  return ContactsFolder.BindWithFolderIdAndPropertySet(
      service, new FolderId.fromWellKnownFolder(name), propertySet);
}