Поделиться через


Свойство NumaNodeCollection.Count

Gets the number of NumaNode entries in the collection.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public ReadOnly Property Count As Integer 
    Get
'Применение
Dim instance As NumaNodeCollection 
Dim value As Integer 

value = instance.Count
public int Count { get; }
public:
virtual property int Count {
    int get () sealed;
}
abstract Count : int 
override Count : int
final function get Count () : int

Значение свойства

Тип: System.Int32
Returns the number of NumaNode entries in the collection. The return type is an int value.

Реализует

ICollection.Count

Примеры

The following example shows how to determine the total number of NUMA nodes on an instance of SQL Server.

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            Server dbServer = new Server("(local)");
            dbServer.Refresh();
            Console.WriteLine("Total NUMA nodes: Microsoft.SqlServer.Smo",
                dbServer.AffinityInfo.NumaNodes.Count);
        }
    }
}

См. также

Справочник

NumaNodeCollection Класс

Пространство имен Microsoft.SqlServer.Management.Smo