iCalNotificationType Enumeration |
The types of iCalendar notifications.
Namespace:
NetQuarry.Mail
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public enum NotificationType
Public Enumeration NotificationType
Members
| Member name | Value | Description |
---|
| New | 0 |
The iCalendar item is a new scheduled item.
In this case the iCal object should have a new ID and a SequenceNumber of zero.
|
| Update | 1 |
The iCalendar item is an update to an existing scheduled item.
In this case the iCal object should have the same ID as the item being updated
and a SequenceNumber greater than any previous notification for the item.
|
| Cancellation | 2 |
The iCalendar item is a cancellation of an existing scheduled item.
In this case the iCal object should have the same ID as the item being updated
and a SequenceNumber greater than any previous notification for the item.
|
See Also