AcceptMeetingInvitationMessage constructor

AcceptMeetingInvitationMessage(
  1. Item referenceItem,
  2. bool tentative
)
Initializes a new instance of the The reference item. if set to accept invitation tentatively.

Implementation

AcceptMeetingInvitationMessage(Item referenceItem, bool tentative)
    : super(referenceItem) {
  this.tentative = tentative;
}