BindWithFolderIdAndPropertySet static method

Future<TasksFolder> BindWithFolderIdAndPropertySet(
  1. ExchangeService service,
  2. FolderId id,
  3. PropertySet propertySet
)
Binds to an existing tasks folder and loads the specified set of properties. Calling this method results in a call to EWS. The service to use to bind to the tasks folder. The Id of the tasks folder to bind to. The set of properties to load.

Implementation

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