Recurrence property

Recurrence? Recurrence
Gets the start time of the appointment. Gets the end time of the appointment. Gets the location of this appointment. Gets the recurrence pattern for this meeting request.

Implementation

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

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

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

/// <summary>
/// Gets the recurrence pattern for this meeting request.
/// </summary>
complex.Recurrence? get Recurrence =>
    this.PropertyBag[AppointmentSchema.Recurrence] as complex.Recurrence?;