ScheduleRuleData.DayOfWeek Property |
Gets or sets the day of the week for the schedule used in a "The [First] [Monday] of [January, February...]" pattern.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax[DataMemberAttribute(Name = "dayOfWeek", EmitDefaultValue = true)]
public DayOfWeek DayOfWeek { get; set; }
<DataMemberAttribute(Name := "dayOfWeek", EmitDefaultValue := true)>
Public Property DayOfWeek As DayOfWeek
Get
Set
public:
[DataMemberAttribute(Name = L"dayOfWeek", EmitDefaultValue = true)]
property DayOfWeek DayOfWeek {
DayOfWeek get ();
void set (DayOfWeek value);
}
[<DataMemberAttribute(Name = "dayOfWeek", EmitDefaultValue = true)>]
member DayOfWeek : DayOfWeek with get, set
Property Value
Type:
DayOfWeekThe day of the week.
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException | The value is being set is not one of the DayOfWeek values. |
Remarks
The property defines the day of week in "The [First] [Monday] of [January, February...]" pattern.
When a schedule is created, this property is set to
Monday by default.
This property is only considered when
PatternType property is set to
Monthly
and
MonthlyPatternKind property is set to
NthSpecificDay.
See Also