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 (25.3.0.1000)
Syntaxpublic int RecurrenceInterval { get; set; }Public Property RecurrenceInterval As Integer
	Get
	Set
public:
property int RecurrenceInterval {
	int get ();
	void set (int value);
}member RecurrenceInterval : int with get, set
Property Value
Type: 
Int32The recurrence interval.
Exceptions| Exception | Condition | 
|---|
| 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