BindWithFolderIdAndPropertySet static method

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

Implementation

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