Recurrence property
Recurrence?
get
Recurrence
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?;