NodeRepairTargetDescription Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Azure SDK for .NET