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