Table of Contents

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

EmailAddressCollection

Body

Gets or sets the body of the response.

public MessageBody Body { get; set; }

Property Value

MessageBody

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

MessageBody

CcRecipients

Gets a list of recipients the response will be sent to as Cc.

public EmailAddressCollection CcRecipients { get; }

Property Value

EmailAddressCollection

ResponseType

Gets a value indicating the type of response this object represents.

public ResponseMessageType ResponseType { get; }

Property Value

ResponseMessageType

Subject

Gets or sets the subject of this response.

public string Subject { get; set; }

Property Value

string

ToRecipients

Gets a list of recipients the response will be sent to.

public EmailAddressCollection ToRecipients { get; }

Property Value

EmailAddressCollection