SendAndSaveCopyWithFolderId method

Future<CalendarActionResults> SendAndSaveCopyWithFolderId(
  1. FolderId destinationFolderId
)
override
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));
}