Reminder Class
Represents a reminder of the task or event.
- Inheritance:
- System.ObjectReminder
Constructors
Reminder()
Initializes a new instance of the Reminder class.
Properties
Description
Gets or sets the description.
Property Value
- System.String
The description of the task.
Name
Gets or sets the name.
Property Value
- System.String
The name of the reminder.
ReminderAction
Gets or sets the reminder action.
public ReminderAction ReminderAction { get; set; }
Public Property ReminderAction As ReminderAction
Property Value
The type of action that reminder should execute.
ReminderAttendees
Gets the reminder attendees.
public IList<MailAddress> ReminderAttendees { get; set; }
Public Property ReminderAttendees As IList(Of MailAddress)
Property Value
- System.Collections.Generic.IList<MailAddress>
MailAddresss of the people which will be notified if ReminderAction is Email.
TriggerBeforeStart
Gets or sets the trigger before start.
public TimeSpan? TriggerBeforeStart { get; set; }
Public Property TriggerBeforeStart As TimeSpan?
Property Value
- System.Nullable<System.TimeSpan>
Time span specifying how long before the start of the parent item (event or task) will the reminder be triggered.
Exceptions
- System.InvalidOperationException
TriggerBeforeStart is null or empty.
TriggerDate
Gets or sets the trigger date.
Property Value
- System.Nullable<System.DateTime>
Date when the reminder will be triggered.
Exceptions
- System.InvalidOperationException
TriggerDate is null or empty.