Send method
Saves the response in the specified folder. Calling this method results in a call to EWS.
The Id of the folder in which to save the response.
Saves the response in the specified folder. Calling this method results in a call to EWS.
The name of the folder in which to save the response.
Saves the response in the Drafts folder. Calling this method results in a call to EWS.
Sends this response without saving a copy. Calling this method results in a call to EWS.
Implementation
// Future<CalendarActionResults> SaveWithFolderId(FolderId destinationFolderId) async
// {
// EwsUtilities.ValidateParam(destinationFolderId, "destinationFolderId");
//
// return new CalendarActionResults(await this.InternalCreate(destinationFolderId, MessageDisposition.SaveOnly));
// }
/// <summary>
/// Saves the response in the specified folder. Calling this method results in a call to EWS.
/// </summary>
/// <param name="destinationFolderName">The name of the folder in which to save the response.</param>
/// <returns>
/// A CalendarActionResults object containing the various items that were created or modified as a
/// results of this operation.
/// </returns>
// Future<CalendarActionResults> SaveWithWellKnownFolder(WellKnownFolderName destinationFolderName) async
// {
// return new CalendarActionResults(await this.InternalCreate(new FolderId(destinationFolderName), MessageDisposition.SaveOnly));
// }
/// <summary>
/// Saves the response in the Drafts folder. Calling this method results in a call to EWS.
/// </summary>
/// <returns>
/// A CalendarActionResults object containing the various items that were created or modified as a
/// results of this operation.
/// </returns>
// Future<CalendarActionResults> Save() async
// {
// return new CalendarActionResults(await this.InternalCreate(null, MessageDisposition.SaveOnly));
// }
/// <summary>
/// Sends this response without saving a copy. Calling this method results in a call to EWS.
/// </summary>
/// <returns>
/// A CalendarActionResults object containing the various items that were created or modified as a
/// results of this operation.
/// </returns>
Future<CalendarActionResults> Send() async {
return new CalendarActionResults(
await this.InternalCreate(null, MessageDisposition.SendOnly));
}