ReminderDueBy property
DateTime?
get
ReminderDueBy
Implementation
// ResponseActions get AllowedResponseActions => this.PropertyBag[ItemSchema.AllowedResponseActions];
/// <summary>
/// Gets or sets the date and time when the reminder is due for this item.
/// </summary>
DateTime? get ReminderDueBy =>
this.PropertyBag[ItemSchema.ReminderDueBy] as DateTime?;
set
ReminderDueBy
(DateTime? value)
Implementation
set ReminderDueBy(DateTime? value) =>
this.PropertyBag[ItemSchema.ReminderDueBy] = value;