Share via


RecurrenceSchedule Constructores

Definición

Sobrecargas

RecurrenceSchedule()

Inicializa una nueva instancia de la clase RecurrenceSchedule.

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

Inicializa una nueva instancia de la clase RecurrenceSchedule.

RecurrenceSchedule()

Inicializa una nueva instancia de la clase RecurrenceSchedule.

public RecurrenceSchedule ();
Public Sub New ()

Se aplica a

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

Inicializa una nueva instancia de la clase RecurrenceSchedule.

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)

Parámetros

minutes
IList<Nullable<Int32>>

Los minutos.

hours
IList<Nullable<Int32>>

Las horas.

weekDays
IList<Nullable<DaysOfWeek>>

Los días de la semana.

monthDays
IList<Nullable<Int32>>

Días del mes.

monthlyOccurrences
IList<RecurrenceScheduleOccurrence>

Repeticiones mensuales.

Se aplica a