ResponseObject<TMessage>.Save 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
Save() |
Saves the response in the Drafts folder. Calling this method results in a call to EWS. |
Save(FolderId) |
Saves the response in the specified folder. Calling this method results in a call to EWS. |
Save(WellKnownFolderName) |
Saves the response in the specified folder. Calling this method results in a call to EWS. |
Save()
Saves the response in the Drafts folder. Calling this method results in a call to EWS.
public:
TMessage Save();
public TMessage Save ();
Public Function Save () As TMessage
Returns
A TMessage that represents the response.
Applies to
Save(FolderId)
Saves the response in the specified folder. Calling this method results in a call to EWS.
public:
TMessage Save(Microsoft::Exchange::WebServices::Data::FolderId ^ destinationFolderId);
public TMessage Save (Microsoft.Exchange.WebServices.Data.FolderId destinationFolderId);
Public Function Save (destinationFolderId As FolderId) As TMessage
Parameters
- destinationFolderId
- FolderId
The Id of the folder in which to save the response.
Returns
A TMessage that represents the response.
Applies to
Save(WellKnownFolderName)
Saves the response in the specified folder. Calling this method results in a call to EWS.
public:
TMessage Save(Microsoft::Exchange::WebServices::Data::WellKnownFolderName destinationFolderName);
public TMessage Save (Microsoft.Exchange.WebServices.Data.WellKnownFolderName destinationFolderName);
Public Function Save (destinationFolderName As WellKnownFolderName) As TMessage
Parameters
- destinationFolderName
- WellKnownFolderName
The name of the folder in which to save the response.
Returns
A TMessage that represents the response.