Свойство Computer.IsClustered
Gets the Boolean value that determines whether the computer is in a cluster.
Пространство имен: Microsoft.SqlServer.Management.Utility
Сборка: Microsoft.SqlServer.Management.Utility (в Microsoft.SqlServer.Management.Utility.dll)
Синтаксис
'Декларация
<SfcPropertyAttribute> _
Public ReadOnly Property IsClustered As Boolean
Get
'Применение
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
Значение свойства
Тип: System.Boolean
A Boolean value that specifies whether the computer is in a cluster. If True, the computer is in a cluster. Otherwise, False.
Примеры
VC#
System.Console.WriteLine(computer.IsClustered);
VB
System.Console.WriteLine(computer.IsClustered)
PowerShell
Write-Host $computer.IsClustered