SaveWithFolderIdAndInvitationsMode method

Future<void> SaveWithFolderIdAndInvitationsMode(
  1. FolderId destinationFolderId,
  2. SendInvitationsMode sendInvitationsMode
)
Saves this appointment in the specified 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 appointment. Specifies if and how invitations should be sent if this appointment is a meeting.

Implementation

Future<void> SaveWithFolderIdAndInvitationsMode(
    FolderId destinationFolderId, SendInvitationsMode sendInvitationsMode) {
  EwsUtilities.ValidateParam(destinationFolderId, "destinationFolderId");

  return this.InternalCreate(destinationFolderId, null, sendInvitationsMode);
}