Appointment.Forward Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Forward(MessageBody, IEnumerable<EmailAddress>) |
Forwards the appointment to the associated collection of recipients with a message prepended to the original meeting request. Calling this method results in a call to Exchange Web Services (EWS). |
Forward(MessageBody, EmailAddress[]) |
Forwards the appointment to the associated array of recipients with a message prepended to the original meeting request. Calling this method results in a call to Exchange Web Services (EWS). |
Forward(MessageBody, IEnumerable<EmailAddress>)
Forwards the appointment to the associated collection of recipients with a message prepended to the original meeting request. Calling this method results in a call to Exchange Web Services (EWS).
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 prefix to prepend to the original body of the message.
- toRecipients
- IEnumerable<EmailAddress>
The recipients to forward the appointment to.
Applies to
Forward(MessageBody, EmailAddress[])
Forwards the appointment to the associated array of recipients with a message prepended to the original meeting request. Calling this method results in a call to Exchange Web Services (EWS).
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 prefix to prepend to the original body of the message.
- toRecipients
- EmailAddress[]
The recipients to forward the appointment to.