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追加し、 の プロパティを使用して MainPipe をTaskHostInnerObject取得します。

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

注釈

MainPipe (SQL Server Data Tools (SSDT) のData Flow タスクとして表示) は、COM インターフェイスのIDTSPipeline100マネージド実装です。 これは、Package のデータ フロー タスクをプログラムで作成または変更するときに、マネージド コードから使用されるインターフェイスです。 このオブジェクトで使用できるメソッドとプロパティの概要については、MainPipeClass のドキュメントを参照してください。

プロパティ

AutoGenerateIDForNewObjects (継承元 IDTSPipeline100)
BLOBTempStoragePath (継承元 IDTSPipeline100)
BufferManager (継承元 IDTSPipeline100)
BufferTempStoragePath (継承元 IDTSPipeline100)
ComponentMetaDataCollection (継承元 IDTSPipeline100)
DefaultBufferMaxRows (継承元 IDTSPipeline100)
DefaultBufferSize (継承元 IDTSPipeline100)
EnableCacheUpdate (継承元 IDTSPipeline100)
EnableDisconnectedColumns (継承元 IDTSPipeline100)
EngineThreads (継承元 IDTSPipeline100)
Events (継承元 IDTSPipeline100)
IsSavingXml (継承元 IDTSPipeline100)
PathCollection (継承元 IDTSPipeline100)
PersistenceCustomPropertyCollection[DTSPersistenceFormat] (継承元 IDTSPipeline100)
RunInOptimizedMode (継承元 IDTSPipeline100)
VariableDispenser (継承元 IDTSPipeline100)

メソッド

GetNextPasteID() (継承元 IDTSPipeline100)
GetObjectByID(Int32) (継承元 IDTSPipeline100)
New() (継承元 IDTSPipeline100)
UpdateCacheOnInputColumns() (継承元 IDTSPipeline100)

適用対象