Decline method

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

Implementation

Future<CalendarActionResults> Decline(bool sendResponse) {
  throw NotImplementedException("Decline");
//            DeclineMeetingInvitationMessage decline = this.CreateDeclineMessage();
//
//            if (sendResponse)
//            {
//                return decline.SendAndSaveCopy();
//            }
//            else
//            {
//                return decline.Save();
//            }
}