Recurrence property
Recurrence?
get
Recurrence
Implementation
complex.Recurrence? get Recurrence =>
this.PropertyBag[AppointmentSchema.Recurrence] as complex.Recurrence?;
set
Recurrence
(Recurrence? value)
Implementation
set Recurrence(complex.Recurrence? value) {
if (value != null) {
if (value.IsRegenerationPattern) {
throw new ServiceLocalException(
"Strings.RegenerationPatternsOnlyValidForTasks");
}
}
this.PropertyBag[AppointmentSchema.Recurrence] = value;
}