Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets the Boolean value that determines whether the computer is in a cluster.
Namespace: Microsoft.SqlServer.Management.Utility
Assembly: Microsoft.SqlServer.Management.Utility (in Microsoft.SqlServer.Management.Utility.dll)
Syntax
'Declaration
<SfcPropertyAttribute> _
Public ReadOnly Property IsClustered As Boolean
Get
'Usage
Dim instance As Computer
Dim value As Boolean
value = instance.IsClustered
[SfcPropertyAttribute]
public bool IsClustered { get; }
[SfcPropertyAttribute]
public:
property bool IsClustered {
bool get ();
}
[<SfcPropertyAttribute>]
member IsClustered : bool
function get IsClustered () : boolean
Eigenschaftswert
Typ: System.Boolean
A Boolean value that specifies whether the computer is in a cluster. If True, the computer is in a cluster. Otherwise, False.
Beispiele
VC#
System.Console.WriteLine(computer.IsClustered);
VB
System.Console.WriteLine(computer.IsClustered)
PowerShell
Write-Host $computer.IsClustered