ForEachEnumeratorInfos.Item[Object] プロパティ

定義

ForEachEnumeratorInfo オブジェクトをコレクションから返します。

public:
 property Microsoft::SqlServer::Dts::Runtime::ForEachEnumeratorInfo ^ default[System::Object ^] { Microsoft::SqlServer::Dts::Runtime::ForEachEnumeratorInfo ^ get(System::Object ^ index); };
public Microsoft.SqlServer.Dts.Runtime.ForEachEnumeratorInfo this[object index] { get; }
member this.Item(obj) : Microsoft.SqlServer.Dts.Runtime.ForEachEnumeratorInfo
Default Public ReadOnly Property Item(index As Object) As ForEachEnumeratorInfo

パラメーター

index
Object

コレクションから返されるオブジェクトの名前、ID、またはインデックスです。

プロパティ値

ForEachEnumeratorInfo オブジェクト。

次のコード例では、feInfos[0] 構文を使用して、指定したインデックスと名前の項目をコレクションから取得します。

注意

次のコード サンプルを英語以外のロケールで使用するには、文字列 "For Each Item Enumerator" をローカライズされた列挙子名に変更してください。

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);  
        }  
    }  
}  

サンプル出力:

Description of ForEach entry: For Each File Enumerator

ID of ForEach entry: {62C3D0DC-C6A3-4A08-84F3-6028B2452F41}

適用対象