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

示例输出:

ForEach 条目的说明:对于每个文件枚举器

ForEach 条目的 ID:{62C3D0DC-C6A3-4A08-84F3-6028B2452F41}

适用于