Computer.IsClustered Property
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.
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