IsOnlineMeeting property

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

Implementation

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

Implementation

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