Computer.IsClustered Property

Definition

Gets the Boolean value that determines whether the computer is in a cluster.

public:
 property bool IsClustered { bool get(); };
[Microsoft.SqlServer.Management.Sdk.Sfc.Metadata.SfcProperty]
public bool IsClustered { get; }
[<Microsoft.SqlServer.Management.Sdk.Sfc.Metadata.SfcProperty>]
member this.IsClustered : bool
Public ReadOnly Property IsClustered As Boolean

Property Value

A Boolean value that specifies whether the computer is in a cluster. If True, the computer is in a cluster. Otherwise, False.

Attributes

Examples

VC#

System.Console.WriteLine(computer.IsClustered);  

VB

System.Console.WriteLine(computer.IsClustered)  

PowerShell

Write-Host $computer.IsClustered  

Applies to