Recurrence property

TimeChangeRecurrence? Recurrence
Gets or sets the recurrence pattern defining when the change occurs. Recurrence and AbsoluteDate are mutually exclusive; setting one resets the other.

Implementation

TimeChangeRecurrence? get Recurrence => this._recurrence;
void Recurrence=(TimeChangeRecurrence? value)

Implementation

set Recurrence(TimeChangeRecurrence? value) {
  if (this.CanSetFieldValue(this._recurrence, value)) {
    this._recurrence = value;
    this.Changed();
    if (this._recurrence != null) {
      this._absoluteDate = null;
    }
  }
}