Share via


NodeRepairTargetDescription Constructors

Definition

Overloads

NodeRepairTargetDescription()

Initializes a new instance of the NodeRepairTargetDescription class with an empty list of node names.

NodeRepairTargetDescription(IEnumerable<String>)

Initializes a new instance of the NodeRepairTargetDescription class that contains elements copied from the specified collection.

NodeRepairTargetDescription(String)

Initializes a new instance of the NodeRepairTargetDescription class that contains the given node name as the only element in its node list.

NodeRepairTargetDescription()

Initializes a new instance of the NodeRepairTargetDescription class with an empty list of node names.

public NodeRepairTargetDescription ();
Public Sub New ()

Applies to

NodeRepairTargetDescription(IEnumerable<String>)

Initializes a new instance of the NodeRepairTargetDescription class that contains elements copied from the specified collection.

public NodeRepairTargetDescription (System.Collections.Generic.IEnumerable<string> nodeNames);
new System.Fabric.Repair.NodeRepairTargetDescription : seq<string> -> System.Fabric.Repair.NodeRepairTargetDescription
Public Sub New (nodeNames As IEnumerable(Of String))

Parameters

nodeNames
IEnumerable<String>

The collection whose elements are copied to the new list.

Applies to

NodeRepairTargetDescription(String)

Initializes a new instance of the NodeRepairTargetDescription class that contains the given node name as the only element in its node list.

public NodeRepairTargetDescription (string nodeName);
new System.Fabric.Repair.NodeRepairTargetDescription : string -> System.Fabric.Repair.NodeRepairTargetDescription
Public Sub New (nodeName As String)

Parameters

nodeName
String

The name of the node to be added to the list.

Applies to