Class ResponseMessage
- Namespace
- Microsoft.Exchange.WebServices.Data
- Assembly
- Microsoft.Exchange.WebServices.dll
Represents the base class for e-mail related responses (Reply, Reply all and Forward).
public sealed class ResponseMessage : ResponseObject<EmailMessage>
- Inheritance
-
ResponseMessage
- Inherited Members
Properties
BccRecipients
Gets a list of recipients this response will be sent to as Bcc.
public EmailAddressCollection BccRecipients { get; }
Property Value
Body
Gets or sets the body of the response.
public MessageBody Body { get; set; }
Property Value
BodyPrefix
Gets or sets the body prefix of this response. The body prefix will be prepended to the original message's body when the response is created.
public MessageBody BodyPrefix { get; set; }
Property Value
CcRecipients
Gets a list of recipients the response will be sent to as Cc.
public EmailAddressCollection CcRecipients { get; }
Property Value
ResponseType
Gets a value indicating the type of response this object represents.
public ResponseMessageType ResponseType { get; }
Property Value
Subject
Gets or sets the subject of this response.
public string Subject { get; set; }
Property Value
ToRecipients
Gets a list of recipients the response will be sent to.
public EmailAddressCollection ToRecipients { get; }