ReminderDueBy property

DateTime? ReminderDueBy
Gets a value indicating which response actions are allowed on this item. Examples of response actions are Reply and Forward. Gets or sets the date and time when the reminder is due for this item.

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?;
void ReminderDueBy=(DateTime? value)

Implementation

set ReminderDueBy(DateTime? value) =>
    this.PropertyBag[ItemSchema.ReminderDueBy] = value;