Compartilhar via


Propriedade do RDL Cpus

Gets a collection of Cpu objects that belong to this NumaNode object.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
Public ReadOnly Property Cpus As CpuCollection
    Get
'Uso
Dim instance As NumaNode
Dim value As CpuCollection

value = instance.Cpus
public CpuCollection Cpus { get; }
public:
property CpuCollection^ Cpus {
    CpuCollection^ get ();
}
member Cpus : CpuCollection
function get Cpus () : CpuCollection

Valor da propriedade

Tipo: Microsoft.SqlServer.Management.Smo. . :: . .CpuCollection
A CpuCollection that contains one entry for each CPU that belongs to this NUMA node.

Comentários

The Cpus property is read-only. A new CPU collection will be created when null is assigned to this property. The collection is initialized with the information from the parent AffinityInfo object.

ObservaçãoObservação

Although the Cpusis()()()() read-only, the individual Cpu elements can be written to.

Exemplos

The following example shows how to display the total number of CPUs that belong to each NUMA node on the local 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();
            foreach (NumaNode node in dbServer.AffinityInfo.NumaNodes)
            {
                Console.WriteLine(
                   "There are {0} CPUs in NUMA node {1}.",
                    node.Cpus.Count, node.ID);
            }
        }
    }
}