Recurrence property

Recurrence? Recurrence
Gets or sets the recurrence pattern for this task. Available recurrence pattern classes include Recurrence.DailyPattern, Recurrence.MonthlyPattern and Recurrence.YearlyPattern.

Implementation

complex.Recurrence? get Recurrence =>
    this.PropertyBag[TaskSchema.Recurrence] as complex.Recurrence?;
void Recurrence=(Recurrence? value)

Implementation

set Recurrence(complex.Recurrence? value) =>
    this.PropertyBag[TaskSchema.Recurrence] = value;