CancelMeeting method

Future<CalendarActionResults> CancelMeeting([
  1. String? cancellationMessageText = null
])
Cancels the meeting and sends cancellation messages to all attendees. Calling this method results in a call to EWS. Cancellation message text sent to all attendees.

Implementation

Future<CalendarActionResults> CancelMeeting(
    [String? cancellationMessageText = null]) {
  throw NotImplementedException("CancelMeeting");
//            CancelMeetingMessage cancelMsg = this.CreateCancelMeetingMessage();
//            cancelMsg.Body = cancellationMessageText;
//            return cancelMsg.SendAndSaveCopy();
}