SaveWithSendInvitationsMode method

Future<void> SaveWithSendInvitationsMode(
  1. SendInvitationsMode sendInvitationsMode
)
Saves this appointment in the Calendar folder. Calling this method results in at least one call to EWS. Mutliple calls to EWS might be made if attachments have been added. Specifies if and how invitations should be sent if this appointment is a meeting.

Implementation

Future<void> SaveWithSendInvitationsMode(
    SendInvitationsMode sendInvitationsMode) {
  return this.InternalCreate(null, null, sendInvitationsMode);
}