Location property
String?
get
Location
Implementation
// LegacyFreeBusyStatus get LegacyFreeBusyStatus => this.PropertyBag[AppointmentSchema.LegacyFreeBusyStatus];
// set LegacyFreeBusyStatus(LegacyFreeBusyStatus value) => this.PropertyBag[AppointmentSchema.LegacyFreeBusyStatus] = value;
/// <summary>
/// Gets or sets the location of this appointment.
/// </summary>
String? get Location =>
this.PropertyBag[AppointmentSchema.Location] as String?;
set
Location
(String? value)
Implementation
set Location(String? value) =>
this.PropertyBag[AppointmentSchema.Location] = value;