SendAndSaveCopyWithWellKnownFolder method

Future<CalendarActionResults> SendAndSaveCopyWithWellKnownFolder(
  1. WellKnownFolderName destinationFolderName
)
override
Sends this response and saves a copy in the specified folder. Calling this method results in a call to EWS. The name of the folder in which to save the copy of the message.

Implementation

Future<CalendarActionResults> SendAndSaveCopyWithWellKnownFolder(
    WellKnownFolderName destinationFolderName) async {
  return new CalendarActionResults(await this.InternalCreate(
      new FolderId.fromWellKnownFolder(destinationFolderName),
      MessageDisposition.SendAndSaveCopy));
}