SendAndSaveCopyWithFolderId method

void SendAndSaveCopyWithFolderId(
  1. FolderId destinationFolderId
)
Sends this response and 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

void SendAndSaveCopyWithFolderId(FolderId destinationFolderId) {
  EwsUtilities.ValidateParam(destinationFolderId, "destinationFolderId");

  this.InternalCreate(
      destinationFolderId, MessageDisposition.SendAndSaveCopy);
}