New to Telerik Report Server? Start a free 30-day trial
RecurrenceRule
Represents a base class that the actual recurrence rules extend.
The recurrence rule is passed as a string in the form of semicolon delimited list of key=value pairs.
Examples
Daily execution:
"RecurrenceRule":"FREQ=DAILY"
Every second day with a limit of 10 executions:
"RecurrenceRule":"FREQ=DAILY;INTERVAL=2;COUNT=10"
Daily execution with a limit until the provided date in JSON format:
"RecurrenceRule":"FREQ=DAILY;UNTIL=20181009T205959Z"
| Name | Description | Type | Additional information |
|---|---|---|---|
| Start |
Specifies the start date of the recurrence rule. | date |
None. |
| End |
Specifies the end date of the recurrence rule. | date |
None. |
| Count |
Gets or sets the maximum number of occurrences. | integer |
None. |
| Interval |
Gets or sets the interval of the recurrence rule. | integer |
None. |
| ExceptionDates |
Gets Exceptions. | Collection of date |
None. |
| Frequency |
Gets the type of the recurrence rule. | RecurrenceType |
None. |
| EventDuration |
Gets Exceptions. | time interval |
None. |