ScheduleRuleDataDayOfMonth Property

Note: This API is now obsolete.

Gets or sets the day of the month for the schedule used in a "Day(s) N" pattern.

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 = "dayOfMonth", EmitDefaultValue = true)]
[ObsoleteAttribute("Use DaysOfMonth instead.")]
public int? DayOfMonth { get; set; }

Property Value

Type: NullableInt32
The day of the month.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThe value is less than 1 or greater than 31.
Remarks
The property defines a single value of list N in a "Day(s) 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 DaysOfMonth and SetDaysOfMonth(ICollectionInt32) for setting multiple values of list N in a "Day(s) N" pattern.
See Also