Udostępnij za pośrednictwem


Właściwość NumaNodeCollection.Count

Pobiera numer NumaNode wpisów kolekcja.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
Public ReadOnly Property Count As Integer
    Get
'Użycie
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

Wartość właściwości

Typ: System.Int32
Zwraca liczbę NumaNode wpisów kolekcja.Zwracany typ jest int wartości.

Implementacje

ICollection.Count

Przykłady

W poniższym przykładzie pokazano, jak ustalić całkowitą liczbę węzły NUMA na wystąpienie 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);
        }
    }
}