Save method

Future<void> Save()
Saves this item in the default folder based on the item's type (for example, an e-mail message is saved to the Drafts folder). Calling this method results in at least one call to EWS. Mutliple calls to EWS might be made if attachments have been added.

Implementation

Future<void> Save() {
  return this.InternalCreate(null, MessageDisposition.SaveOnly, null);
}