BindWithWellKnownFolderAndPropertySet static method

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

Implementation

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