CreateReply method

ResponseMessage CreateReply(
  1. bool replyAll
)
Creates a reply response to the organizer and/or attendees of the meeting. Indicates whether the reply should go to the organizer only or to all the attendees.

Implementation

ResponseMessage CreateReply(bool replyAll) {
  this.ThrowIfThisIsNew();

  return new ResponseMessage(this,
      replyAll ? ResponseMessageType.ReplyAll : ResponseMessageType.Reply);
}