共用方式為


ChaosScheduleJobActiveDays Constructors

Definition

Overloads

ChaosScheduleJobActiveDays()

Initializes a new instance of the ChaosScheduleJobActiveDays class with all days set to false.

ChaosScheduleJobActiveDays(HashSet<DayOfWeek>)

Initializes a new instance of the ChaosScheduleJobActiveDays class with all days set to false.

ChaosScheduleJobActiveDays(ChaosScheduleJobActiveDays)

Initializes a new instance of the ChaosScheduleJobActiveDays class by copying another set of active days.

ChaosScheduleJobActiveDays()

Initializes a new instance of the ChaosScheduleJobActiveDays class with all days set to false.

public ChaosScheduleJobActiveDays ();
Public Sub New ()

Applies to

ChaosScheduleJobActiveDays(HashSet<DayOfWeek>)

Initializes a new instance of the ChaosScheduleJobActiveDays class with all days set to false.

public ChaosScheduleJobActiveDays (System.Collections.Generic.HashSet<DayOfWeek> activeDaysSet);
new System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays : System.Collections.Generic.HashSet<DayOfWeek> -> System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays
Public Sub New (activeDaysSet As HashSet(Of DayOfWeek))

Parameters

activeDaysSet
HashSet<DayOfWeek>

A set of days of the week that a job will be active for.

Applies to

ChaosScheduleJobActiveDays(ChaosScheduleJobActiveDays)

Initializes a new instance of the ChaosScheduleJobActiveDays class by copying another set of active days.

public ChaosScheduleJobActiveDays (System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays other);
new System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays : System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays -> System.Fabric.Chaos.DataStructures.ChaosScheduleJobActiveDays
Public Sub New (other As ChaosScheduleJobActiveDays)

Parameters

other
ChaosScheduleJobActiveDays

Another set of days to copy.

Applies to