다음을 통해 공유


RecurrenceSchedule Constructors

Definition

Overloads

RecurrenceSchedule()

Initializes a new instance of the RecurrenceSchedule class.

RecurrenceSchedule(IList<Nullable<Int32>>, IList<Nullable<Int32>>, IList<Nullable<DaysOfWeek>>, IList<Nullable<Int32>>, IList<RecurrenceScheduleOccurrence>)

Initializes a new instance of the RecurrenceSchedule class.

RecurrenceSchedule()

Initializes a new instance of the RecurrenceSchedule class.

public RecurrenceSchedule ();
Public Sub New ()

Applies to

RecurrenceSchedule(IList<Nullable<Int32>>, IList<Nullable<Int32>>, IList<Nullable<DaysOfWeek>>, IList<Nullable<Int32>>, IList<RecurrenceScheduleOccurrence>)

Initializes a new instance of the RecurrenceSchedule class.

public RecurrenceSchedule (System.Collections.Generic.IList<int?> minutes = default, System.Collections.Generic.IList<int?> hours = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Logic.Models.DaysOfWeek?> weekDays = default, System.Collections.Generic.IList<int?> monthDays = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Logic.Models.RecurrenceScheduleOccurrence> monthlyOccurrences = default);
new Microsoft.Azure.Management.Logic.Models.RecurrenceSchedule : System.Collections.Generic.IList<Nullable<int>> * System.Collections.Generic.IList<Nullable<int>> * System.Collections.Generic.IList<Nullable<Microsoft.Azure.Management.Logic.Models.DaysOfWeek>> * System.Collections.Generic.IList<Nullable<int>> * System.Collections.Generic.IList<Microsoft.Azure.Management.Logic.Models.RecurrenceScheduleOccurrence> -> Microsoft.Azure.Management.Logic.Models.RecurrenceSchedule
Public Sub New (Optional minutes As IList(Of Nullable(Of Integer)) = Nothing, Optional hours As IList(Of Nullable(Of Integer)) = Nothing, Optional weekDays As IList(Of Nullable(Of DaysOfWeek)) = Nothing, Optional monthDays As IList(Of Nullable(Of Integer)) = Nothing, Optional monthlyOccurrences As IList(Of RecurrenceScheduleOccurrence) = Nothing)

Parameters

minutes
IList<Nullable<Int32>>

The minutes.

hours
IList<Nullable<Int32>>

The hours.

weekDays
IList<Nullable<DaysOfWeek>>

The days of the week.

monthDays
IList<Nullable<Int32>>

The month days.

monthlyOccurrences
IList<RecurrenceScheduleOccurrence>

The monthly occurrences.

Applies to