AcceptTentatively method

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

Implementation

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