Udostępnij przez


Właściwość ForEachEnumeratorInfos.Item

Zwraca ForEachEnumeratorInfo obiekt z kolekcja.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public ReadOnly Default Property Item ( _
    index As Object _
) As ForEachEnumeratorInfo
    Get
'Użycie
Dim instance As ForEachEnumeratorInfos
Dim index As Object
Dim value As ForEachEnumeratorInfo

value = instance(index)
public ForEachEnumeratorInfo this[
    Object index
] { get; }
public:
property ForEachEnumeratorInfo^ default[Object^ index] {
    ForEachEnumeratorInfo^ get (Object^ index);
}
member Item : ForEachEnumeratorInfo
Język JScript obsługuje używanie indeksowanych właściwości, ale nie obsługuje deklarowania nowych.

Parametry

  • index
    Typ: System.Object
    Nazwę, identyfikator lub indeks obiektu z kolekcja.

Przykłady

Poniższy przykład kodu pobiera element z kolekcja indeksu i nazwa, za pomocą feInfos[0] składni.

Ostrzeżenie

Aby użyć poniższego kodu z ustawienia regionalne inne niż angielski, zmień ciąg "Dla każdego elementu wyliczający" zlokalizowana nazwa modułu wyliczającego.

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;

namespace TaskInfos_Item
{
    class Program
    {
        static void Main(string[] args)
        {
            Application app = new Application();
            ForEachEnumeratorInfos feInfos = app.ForEachEnumeratorInfos;

            //Using the Item method syntax of [x], obtain the 
            //description of the first entry.
            ForEachEnumeratorInfo feInfo = feInfos[0];
            String nameOfFirstItem = feInfos[0].Name;
            Console.WriteLine("Description of ForEach entry: {0}", nameOfFirstItem);

            //Using the Item method syntax of [x], obtain the ID
            // of the entry with the name, For Each Item Enumerator.
            feInfo = feInfos["For Each Item Enumerator"];
            String IDOfItem = feInfos["For Each Item Enumerator"].ID;
            Console.WriteLine("ID of ForEach entry: {0}", IDOfItem);
        }
    }
}

Przykładowe dane wyjściowe:

Opis ForEach zapisu: Dla każdego modułu wyliczającego pliku

Identyfikator ForEach wpis: {62C3D0DC-C6A3-4A08-84F3-6028B2452F41}