PostItem.Forward Method

Definition

Overloads

Forward(MessageBody, IEnumerable<EmailAddress>)

Forwards the post item.

Forward(MessageBody, EmailAddress[])

Forwards the post item.

Forward(MessageBody, IEnumerable<EmailAddress>)

Forwards the post item.

public:
 void Forward(Microsoft::Exchange::WebServices::Data::MessageBody ^ bodyPrefix, System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::EmailAddress ^> ^ toRecipients);
public void Forward (Microsoft.Exchange.WebServices.Data.MessageBody bodyPrefix, System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.EmailAddress> toRecipients);
Public Sub Forward (bodyPrefix As MessageBody, toRecipients As IEnumerable(Of EmailAddress))

Parameters

bodyPrefix
MessageBody

The new content body of the forward that is prepended to the original body of the post item.

toRecipients
IEnumerable<EmailAddress>

The recipients of the forwarded post item.

Remarks

Calling this method results in a call to Exchange Web Services (EWS).

Applies to

Forward(MessageBody, EmailAddress[])

Forwards the post item.

public:
 void Forward(Microsoft::Exchange::WebServices::Data::MessageBody ^ bodyPrefix, ... cli::array <Microsoft::Exchange::WebServices::Data::EmailAddress ^> ^ toRecipients);
public void Forward (Microsoft.Exchange.WebServices.Data.MessageBody bodyPrefix, params Microsoft.Exchange.WebServices.Data.EmailAddress[] toRecipients);
Public Sub Forward (bodyPrefix As MessageBody, ParamArray toRecipients As EmailAddress())

Parameters

bodyPrefix
MessageBody

The new content body of the forward that is prepended to the original body of the post item.

toRecipients
EmailAddress[]

The recipients of the forwarded post item.

Remarks

Calling this method results in a call to Exchange Web Services (EWS).

Applies to