SaveWithFolderId method

Future<void> SaveWithFolderId(
  1. FolderId? parentFolderId
)
Saves this item in a specific folder. Calling this method results in at least one call to EWS. Mutliple calls to EWS might be made if attachments have been added. The Id of the folder in which to save this item.

Implementation

Future<void> SaveWithFolderId(FolderId? parentFolderId) {
//            EwsUtilities.ValidateParam(parentFolderId, "parentFolderId");

  return this
      .InternalCreate(parentFolderId, MessageDisposition.SaveOnly, null);
}