EndDate property

TZDateTime? EndDate
Gets or sets the date after which the recurrence ends. Setting EndDate resets NumberOfOccurrences.

Implementation

TZDateTime? get EndDate => this._endDate;
void EndDate=(TZDateTime? value)

Implementation

set EndDate(TZDateTime? value) {
  if (this.CanSetFieldValue(this._endDate, value)) {
    this._endDate = value;
    this._numberOfOccurrences = null;
    this.Changed();
  }
}