Condividi tramite


Proprietà Item

Gets a NumaNode object.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
Public ReadOnly Default Property Item ( _
    index As Integer _
) As NumaNode
    Get
'Utilizzo
Dim instance As NumaNodeCollection
Dim index As Integer
Dim value As NumaNode

value = instance(index)
public NumaNode this[
    int index
] { get; }
public:
property NumaNode^ default[int index] {
    NumaNode^ get (int index);
}
member Item : NumaNode
JScript supporta l'utilizzo di proprietà indicizzate, ma non la dichiarazione di nuove proprietà.

Parametri

  • index
    Tipo: System. . :: . .Int32
    Index of the NumaNode object to return. The index must be between 0 and Count-1.

Valore proprietà

Tipo: Microsoft.SqlServer.Management.Smo. . :: . .NumaNode
Returns a NumaNode object.

Esempi

The following example displays the IDs of the NUMA nodes in the NUMA nodes that make up the NumaNodeCollection object.

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

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            Server dbServer = new Server("(local)");
            for (int numaCount = 0;
                 numaCount < dbServer.AffinityInfo.NumaNodes.Count;
                 numaCount++)
           {
               Console.WriteLine("NumaNode ID is Microsoft.SqlServer.Smo",
               dbServer.AffinityInfo.NumaNodes[numaCount].ID);
           }
        }
    }
}