ScheduleRuleRecurrenceInterval Property

Gets or sets the recurrence interval, which could be in hours or minutes, depending on RecurrenceIntervalKind.

Namespace:  Dundas.BI.Scheduling
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public int RecurrenceInterval { get; set; }

Property Value

Type: Int32
The recurrence interval.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException

The recurrence interval kind is hours and the value is less than 1 or greater than 24.

or

The recurrence interval kind is minutes and the value is less than or equal to 0.

Remarks
The property defines the value of N in "Every N [Hours]" pattern. When a schedule is created, this property is set to 1 by default. This property is only considered when HasRecurrence and IsRecurrencePattern are both set to .
See Also