ScheduleRuleDataDayOfMonth Property |
Gets or sets the number of repeatable day periods for the schedule.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax[DataMemberAttribute(Name = "dayOfMonth", EmitDefaultValue = true)]
public Nullable<int> DayOfMonth { get; set; }<DataMemberAttribute(Name := "dayOfMonth", EmitDefaultValue := true)>
Public Property DayOfMonth As Nullable(Of Integer)
Get
Set
public:
[DataMemberAttribute(Name = L"dayOfMonth", EmitDefaultValue = true)]
property Nullable<int> DayOfMonth {
Nullable<int> get ();
void set (Nullable<int> value);
}[<DataMemberAttribute(Name = "dayOfMonth", EmitDefaultValue = true)>]
member DayOfMonth : Nullable<int> with get, set
Property Value
Type:
NullableInt32The number of repeatable month day periods.
Exceptions| Exception | Condition |
|---|
| ArgumentOutOfRangeException | The value is less than 1 or greater than 31. |
Remarks
The property defines the value of N in a "Day N" pattern.
When a schedule is created, this property is set to the
Day value of
StartTime by default.
This property is only considered when
PatternType property is set to
Monthly
and
MonthlyPatternKind is set to
Day.
See Also