BindWithFolderId static method

Future<SearchFolder> BindWithFolderId(
  1. ExchangeService service,
  2. FolderId id
)
Binds to an existing search folder and loads its first class 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.

Implementation

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