Accept method

Future<CalendarActionResults> Accept(
  1. bool sendResponse
)
override
Accepts the meeting. Calling this method results in a call to EWS. Indicates whether to send a response to the organizer.

Implementation

Future<CalendarActionResults> Accept(bool sendResponse) {
  return this.InternalAccept(false, sendResponse);
}