IsResponseRequested property

bool? get IsResponseRequested
Gets or sets a value indicating whether responses are requested when invitations are sent for this meeting.

Implementation

bool? get IsResponseRequested =>
    this.PropertyBag[AppointmentSchema.IsResponseRequested] as bool?;
set IsResponseRequested (bool? value)

Implementation

set IsResponseRequested(bool? value) =>
    this.PropertyBag[AppointmentSchema.IsResponseRequested] = value;