IsResponseRequested property

bool? 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?;
void IsResponseRequested=(bool? value)

Implementation

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