Recurrence property
TimeChangeRecurrence?
get
Recurrence
Implementation
TimeChangeRecurrence? get Recurrence => this._recurrence;
set
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;
}
}
}