ScheduleRuleDataSpecificDaysOfWeek Property |
Gets the selected days of the week for the schedule.
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 = "specificDaysOfWeek", EmitDefaultValue = false)]
public IList<DayOfWeek> SpecificDaysOfWeek { get; }
<DataMemberAttribute(Name := "specificDaysOfWeek", EmitDefaultValue := false)>
Public ReadOnly Property SpecificDaysOfWeek As IList(Of DayOfWeek)
Get
public:
[DataMemberAttribute(Name = L"specificDaysOfWeek", EmitDefaultValue = false)]
property IList<DayOfWeek>^ SpecificDaysOfWeek {
IList<DayOfWeek>^ get ();
}
[<DataMemberAttribute(Name = "specificDaysOfWeek", EmitDefaultValue = false)>]
member SpecificDaysOfWeek : IList<DayOfWeek> with get
Property Value
Type:
IListDayOfWeekThe days of week.
Remarks
This property defines the selected days of week in a Weekly pattern, for example "Every N week(s) on: Sunday, Monday etc".
When a schedule is created, this property includes all seven days of week by default.
This property is only considered when
PatternType property is set to
Weekly.
See Also