PipelineComponentInfos.Item[Object] 属性

定义

从集合返回一个 PipelineComponentInfo 对象。

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

参数

index
Object

要在集合中找到的项的名称、ID、说明或索引。

属性值

PipelineComponentInfo

PipelineComponentInfo 对象。

示例

下面的代码示例使用两种方法从集合中检索项。 第一种方法使用 pInfos[…] 语法检索位于集合的第一个位置的整个对象,并将其放置在对象中 pInfo 。 现在可以像往常一样从 pInfo 对象中检索所有属性。 第二种方法演示如何使用名称作为索引器从集合中的“merge”对象检索特定属性(说明)。

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();  
            PipelineComponentInfos pInfos = app.PipelineComponentInfos;  

            //Using the Item method syntax of [x], obtain the description  
            // of the Merge entry.  
            PipelineComponentInfo pInfo = pInfos["Merge"];  
            String nameOfFirstItem = pInfos["Merge"].Description;  
            Console.WriteLine("Description of Merge entry: {0}", nameOfFirstItem);  
        }  
    }  
}  
Imports System  
Imports System.Collections.Generic  
Imports System.Text  
Imports Microsoft.SqlServer.Dts.Runtime  

Namespace TaskInfos_Item  
    Class Program  
        Shared  Sub Main(ByVal args() As String)  
            Dim app As Application =  New Application()   
            Dim pInfos As PipelineComponentInfos =  app.PipelineComponentInfos   

            'Using the Item method syntax of [x], obtain the description  
            ' of the Merge entry.  
            Dim pInfo As PipelineComponentInfo =  pInfos("Merge")   
            Dim nameOfFirstItem As String =  pInfos("Merge").Description   
            Console.WriteLine("Description of Merge entry: {0}", nameOfFirstItem)  
        End Sub  
    End Class  
End Namespace  

示例输出:

合并项的说明:合并转换

注解

如果对方法的 Contains 调用返回 true,则可以使用语法 PipelineComponentInfos[index]访问集合中的指定元素。 但是,如果 Contains 该方法返回 false,此属性将引发异常。 在 C# 中,此属性是类的 PipelineComponentInfos 索引器

适用于