Share via


RecurrenceScheduleOccurrence Constructors

Definition

Overloads

RecurrenceScheduleOccurrence()

Initializes a new instance of the RecurrenceScheduleOccurrence class.

RecurrenceScheduleOccurrence(Nullable<DayOfWeek>, Nullable<Int32>)

Initializes a new instance of the RecurrenceScheduleOccurrence class.

RecurrenceScheduleOccurrence()

Initializes a new instance of the RecurrenceScheduleOccurrence class.

public RecurrenceScheduleOccurrence ();
Public Sub New ()

Applies to

RecurrenceScheduleOccurrence(Nullable<DayOfWeek>, Nullable<Int32>)

Initializes a new instance of the RecurrenceScheduleOccurrence class.

public RecurrenceScheduleOccurrence (Microsoft.Azure.Management.Logic.Models.DayOfWeek? day = default, int? occurrence = default);
new Microsoft.Azure.Management.Logic.Models.RecurrenceScheduleOccurrence : Nullable<Microsoft.Azure.Management.Logic.Models.DayOfWeek> * Nullable<int> -> Microsoft.Azure.Management.Logic.Models.RecurrenceScheduleOccurrence
Public Sub New (Optional day As Nullable(Of DayOfWeek) = Nothing, Optional occurrence As Nullable(Of Integer) = Nothing)

Parameters

day
Nullable<DayOfWeek>

The day of the week. Possible values include: 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'

occurrence
Nullable<Int32>

The occurrence.

Applies to