Gets the list of all recurrence exceptions.
Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling.Silverlight
C# Copy Code |
---|
public ICollection Exceptions { get; } |
Visual Basic Copy Code |
---|
Public ReadOnly Property Exceptions As ICollection |
A .NET ICollection containing the exceptions generated for this recurrence.
The following example traverses all deleted occurrences of a recurrence. The example assumes that recurrence references an existing Recurrence object.
C# Copy Code |
---|
foreach (RecurrenceException exception in recurrence.Exceptions) { if (exception.IsDeleted) { // Do something here } } |
Visual Basic Copy Code |
---|
For Each exception As RecurrenceException in recurrence.Exceptions |