Item.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 this item in the default folder based on the item's type. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added. |
Save(FolderId) |
Saves this item in a specific folder. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added. |
Save(WellKnownFolderName) |
Saves this item in a specific folder. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added. |
Save()
Saves this item in the default folder based on the item's type. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added.
public:
void Save();
public void Save ();
Public Sub Save ()
Applies to
Save(FolderId)
Saves this item in a specific folder. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added.
public:
void Save(Microsoft::Exchange::WebServices::Data::FolderId ^ parentFolderId);
public void Save (Microsoft.Exchange.WebServices.Data.FolderId parentFolderId);
Public Sub Save (parentFolderId As FolderId)
Parameters
- parentFolderId
- FolderId
The ID of the folder in which to save this item.
Applies to
Save(WellKnownFolderName)
Saves this item in a specific folder. Calling this method results in at least one call to Exchange Web Services (EWS). Multiple calls to EWS might be made if attachments have been added.
public:
void Save(Microsoft::Exchange::WebServices::Data::WellKnownFolderName parentFolderName);
public void Save (Microsoft.Exchange.WebServices.Data.WellKnownFolderName parentFolderName);
Public Sub Save (parentFolderName As WellKnownFolderName)
Parameters
- parentFolderName
- WellKnownFolderName
The name of the folder in which to save this item.