Location property

String? Location
Gets the start time of the appointment. Gets the end time of the appointment. Gets the location of this appointment.

Implementation

// DateTime get Start => this.PropertyBag[MeetingResponseSchema.Start];

/// <summary>
/// Gets the end time of the appointment.
/// </summary>
// DateTime get End => this.PropertyBag[MeetingResponseSchema.End];

/// <summary>
/// Gets the location of this appointment.
/// </summary>
String? get Location =>
    this.PropertyBag[MeetingResponseSchema.Location] as String?;