PipelineComponentInfos プロパティ
PipelineComponentInfo オブジェクトを含む PipelineComponentInfos コレクションを返します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Public ReadOnly Property PipelineComponentInfos As PipelineComponentInfos
Get
'使用
Dim instance As Application
Dim value As PipelineComponentInfos
value = instance.PipelineComponentInfos
public PipelineComponentInfos PipelineComponentInfos { get; }
public:
property PipelineComponentInfos^ PipelineComponentInfos {
PipelineComponentInfos^ get ();
}
member PipelineComponentInfos : PipelineComponentInfos
function get PipelineComponentInfos () : PipelineComponentInfos
プロパティ値
型: Microsoft.SqlServer.Dts.Runtime. . :: . .PipelineComponentInfos
アプリケーションのすべての PipelineComponentInfo オブジェクトを含んでいる PipelineComponentInfos コレクションです。このプロパティは読み取り専用です。
使用例
次のコード例では、PipelineComponentInfos コレクションを列挙します。
class ApplicationTests
{
static void Main(string[] args)
{
Application app = new Application();
PipelineComponentInfos pcis = app.PipelineComponentInfos;
foreach (PipelineComponentInfo x in pcis)
Console.WriteLine(x.CreationName);
}
}
class ApplicationTests
Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim pcis As PipelineComponentInfos = app.PipelineComponentInfos
For Each x As PipelineComponentInfo In pcis
Console.WriteLine(x.CreationName)
Next
End Sub
End Class
サンプルの出力 :
DTSTransform.Merge.1
DTSTransform.MergeJoin.1
DTSTransform.Lookup.1
DTSTransform.Lineage.1
DTSTransform.RowSampling.1
DTSAdapter.OLEDBSource.1
DTSTransform.CharacterMap.1
DTSTransform.GroupDups.1
Microsoft.SqlServer.Dts.Pipeline.DataReaderSourceAdapter, Microsoft.SqlServer.ADONETSrc, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91
Microsoft.SqlServer.Dts.Pipeline.DataReaderDestinationAdapter, Microsoft.SqlServer.DataReaderDest, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91