Location property

String? Location
Gets or sets a value indicating the free/busy status of the owner of this appointment. Gets or sets the location of this appointment.

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?;
void Location=(String? value)

Implementation

set Location(String? value) =>
    this.PropertyBag[AppointmentSchema.Location] = value;