Application.PipelineComponentInfos 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PipelineComponentInfos 개체가 포함된 PipelineComponentInfo 컬렉션을 반환합니다.
public:
property Microsoft::SqlServer::Dts::Runtime::PipelineComponentInfos ^ PipelineComponentInfos { Microsoft::SqlServer::Dts::Runtime::PipelineComponentInfos ^ get(); };
public Microsoft.SqlServer.Dts.Runtime.PipelineComponentInfos PipelineComponentInfos { get; }
member this.PipelineComponentInfos : Microsoft.SqlServer.Dts.Runtime.PipelineComponentInfos
Public ReadOnly Property PipelineComponentInfos As PipelineComponentInfos
속성 값
애플리케이션의 모든 PipelineComponentInfos 개체가 포함된 PipelineComponentInfo 컬렉션입니다. 이 속성은 읽기 전용입니다.
예제
다음 코드 예제에서는 컬렉션을 열거하는 방법을 보여 있습니다 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