CreateAcceptMessage method

AcceptMeetingInvitationMessage CreateAcceptMessage(
  1. bool tentative
)
override
Applies the local changes that have been made to this appointment. Calling this method results in at least one call to EWS. Mutliple calls to EWS might be made if attachments have been added or removed. Specifies how conflicts should be resolved. Specifies if and how invitations or cancellations should be sent if this appointment is a meeting. Deletes this appointment. Calling this method results in a call to EWS. The deletion mode. Specifies if and how cancellations should be sent if this appointment is a meeting. Creates a local meeting acceptance message that can be customized and sent. Specifies whether the meeting will be tentatively accepted.

Implementation

// void Update(
//            ConflictResolutionMode conflictResolutionMode,
//            SendInvitationsOrCancellationsMode sendInvitationsOrCancellationsMode)
//        {
//            this.InternalUpdate(
//                null,
//                conflictResolutionMode,
//                null,
//                sendInvitationsOrCancellationsMode);
//        }

/// <summary>
/// Deletes this appointment. Calling this method results in a call to EWS.
/// </summary>
/// <param name="deleteMode">The deletion mode.</param>
/// <param name="sendCancellationsMode">Specifies if and how cancellations should be sent if this appointment is a meeting.</param>
// Future<void> Delete(DeleteMode deleteMode, SendCancellationsMode sendCancellationsMode)
//        {
//            this.InternalDelete(
//                deleteMode,
//                sendCancellationsMode,
//                null);
//        }

/// <summary>
/// Creates a local meeting acceptance message that can be customized and sent.
/// </summary>
/// <param name="tentative">Specifies whether the meeting will be tentatively accepted.</param>
/// <returns>An AcceptMeetingInvitationMessage representing the meeting acceptance message. </returns>
AcceptMeetingInvitationMessage CreateAcceptMessage(bool tentative) {
  return new AcceptMeetingInvitationMessage(this, tentative);
}