StartDate property

TZDateTime? StartDate
Gets or sets the date and time when the recurrence start.

Implementation

TZDateTime? get StartDate =>
    this.GetFieldValueOrThrowIfNull<DateTime?>(this._startDate, "StartDate") as TZDateTime?;
void StartDate=(TZDateTime? value)

Implementation

set StartDate(TZDateTime? value) => this._startDate = value;