TimeInWeek Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TimeInWeek() |
Initializes a new instance of the TimeInWeek class. |
TimeInWeek(String, IList<Nullable<Int32>>) |
Initializes a new instance of the TimeInWeek class. |
TimeInWeek()
Initializes a new instance of the TimeInWeek class.
public TimeInWeek ();
Public Sub New ()
Applies to
TimeInWeek(String, IList<Nullable<Int32>>)
Initializes a new instance of the TimeInWeek class.
public TimeInWeek (string day = default, System.Collections.Generic.IList<int?> hourSlots = default);
new Microsoft.Azure.Management.ContainerService.Models.TimeInWeek : string * System.Collections.Generic.IList<Nullable<int>> -> Microsoft.Azure.Management.ContainerService.Models.TimeInWeek
Public Sub New (Optional day As String = Nothing, Optional hourSlots As IList(Of Nullable(Of Integer)) = Nothing)
Parameters
- day
- String
The day of the week. Possible values include: 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
Each integer hour represents a time range beginning at 0m after the hour ending at the next hour (non-inclusive). 0 corresponds to 00:00 UTC, 23 corresponds to 23:00 UTC. Specifying [0, 1] means the 00:00 - 02:00 UTC time range.