CreateReply method

ResponseMessage CreateReply(
  1. bool replyAll
)
Creates a reply response to the message. Indicates whether the reply should go to all of the original recipients of the message.

Implementation

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

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