ScheduleRuleDataRecurrenceInterval Property |
Gets or sets the recurrence interval, which could be in hours or minutes, depending on
RecurrenceIntervalKind.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(Name = "recurrenceInterval", EmitDefaultValue = false)]
public int RecurrenceInterval { get; set; }
<DataMemberAttribute(Name := "recurrenceInterval", EmitDefaultValue := false)>
Public Property RecurrenceInterval As Integer
Get
Set
public:
[DataMemberAttribute(Name = L"recurrenceInterval", EmitDefaultValue = false)]
property int RecurrenceInterval {
int get ();
void set (int value);
}
[<DataMemberAttribute(Name = "recurrenceInterval", EmitDefaultValue = false)>]
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