IsOnlineMeeting property

bool? IsOnlineMeeting
Gets or sets a value indicating whether this is an online meeting.

Implementation

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

Implementation

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