MainPipe インターフェイス

定義

public interface class MainPipe : Microsoft::SqlServer::Dts::Pipeline::Wrapper::Sql2014::IDTSPipeline100
[System.Runtime.InteropServices.CoClass(typeof(Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.MainPipeClass))]
[System.Runtime.InteropServices.Guid("6D3931AC-822D-414C-8F10-7447A54BA55C")]
public interface MainPipe : Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.IDTSPipeline100
[<System.Runtime.InteropServices.CoClass(typeof(Microsoft.SqlServer.Dts.Pipeline.Wrapper.Sql2014.MainPipeClass))>]
[<System.Runtime.InteropServices.Guid("6D3931AC-822D-414C-8F10-7447A54BA55C")>]
type MainPipe = interface
    interface IDTSPipeline100
Public Interface MainPipe
Implements IDTSPipeline100
派生
属性
実装

以下のコード例では、MainPipeオブジェクトをPackageに追加し、TaskHostInnerObject プロパティを使って MainPipe を取得します。

Package p = new Package();  
Executable e = p.Executables.Add("DTS.Pipeline.1");  
TaskHost thMainPipe = e as TaskHost;  
MainPipe dataFlowTask = thMainPipe.InnerObject as MainPipe;  

注釈

メインパイプ(SQL Server Data ToolsのData Flowタスク(SSDT)として表示)は、IDTSPipeline100COMインターフェースの管理された実装です。 これは、 Package内でデータフロータスクをプログラム的に作成または変更する際にマネージドコードから使われるインターフェースです。 このオブジェクトで利用可能なメソッドやプロパティの概要については、 MainPipeClass ドキュメントをご覧ください。

適用対象