Reply method

void Reply(
  1. MessageBody bodyPrefix,
  2. bool replyAll
)
Replies to the organizer and/or the attendees of the meeting. Calling this method results in a call to EWS. The prefix to prepend to the body of the meeting. Indicates whether the reply should go to the organizer only or to all the attendees.

Implementation

void Reply(MessageBody bodyPrefix, bool replyAll) {
  ResponseMessage responseMessage = this.CreateReply(replyAll);

  responseMessage.BodyPrefix = bodyPrefix;

  responseMessage.SendAndSaveCopy();
}