次の方法で共有


Item プロパティ

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

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Public ReadOnly Default Property Item ( _
    index As Object _
) As PipelineComponentInfo
    Get
'使用
Dim instance As PipelineComponentInfos
Dim index As Object
Dim value As PipelineComponentInfo

value = instance(index)
public PipelineComponentInfo this[
    Object index
] { get; }
public:
property PipelineComponentInfo^ default[Object^ index] {
    PipelineComponentInfo^ get (Object^ index);
}
member Item : PipelineComponentInfo
JScript はインデックス化されたプロパティの使用をサポートしていますが、新規の宣言はサポートしていません。

パラメーター

  • index
    型: System. . :: . .Object
    コレクション内で検索する項目の名前、ID、説明、またはインデックスです。

説明

Contains メソッドの呼び出しで true が返される場合は、PipelineComponentInfos[index] 構文を使用することにより、コレクション内の指定した要素にアクセスできます。ただし、Contains メソッドから false が返される場合、このプロパティは例外をスローします。C# の場合、このプロパティは PipelineComponentInfos クラスのインデクサとなります。

使用例

次のコード例では、2 つのメソッドを使用して、コレクションから項目を取得します。最初のメソッドでは、pInfos[…] 構文を使用して、コレクションの先頭に格納されたオブジェクト全体を取得し、pInfo オブジェクトに格納します。これによって、pInfo オブジェクトからすべてのプロパティを通常どおり取得できるようになります。2 番目のメソッドでは、名前をインデクサとして使用して、コレクションの merge オブジェクトから description プロパティを取得します。

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

サンプルの出力 :

Description of Merge entry: Merge Transformation