BindWithFolderIdAndPropertySet static method

Future<SearchFolder> BindWithFolderIdAndPropertySet(
  1. ExchangeService service,
  2. FolderId id,
  3. PropertySet propertySet
)
Binds to an existing search 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 search folder. The Id of the search folder to bind to. The set of properties to load.

Implementation

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