SendAndSaveCopyWithFolderId method
Sends this response ans saves a copy in the specified folder. Calling this method results in a call to EWS.
The Id of the folder in which to save the copy of the message.
Implementation
Future<CalendarActionResults> SendAndSaveCopyWithFolderId(
FolderId destinationFolderId) async {
EwsUtilities.ValidateParam(destinationFolderId, "destinationFolderId");
return new CalendarActionResults(await this.InternalCreate(
destinationFolderId, MessageDisposition.SendAndSaveCopy));
}