Share via


IDTSRuntimeComponent100 接口

Defines the run-time methods of a data flow component.

命名空间:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
程序集:  Microsoft.SqlServer.DTSPipelineWrap(在 Microsoft.SqlServer.DTSPipelineWrap.dll 中)

语法

声明
<GuidAttribute("A740CF66-9C37-45CA-AE69-0219FE340543")> _
Public Interface IDTSRuntimeComponent100
用法
Dim instance As IDTSRuntimeComponent100
[GuidAttribute("A740CF66-9C37-45CA-AE69-0219FE340543")]
public interface IDTSRuntimeComponent100
[GuidAttribute(L"A740CF66-9C37-45CA-AE69-0219FE340543")]
public interface class IDTSRuntimeComponent100
[<GuidAttribute("A740CF66-9C37-45CA-AE69-0219FE340543")>]
type IDTSRuntimeComponent100 =  interface end
public interface IDTSRuntimeComponent100

IDTSRuntimeComponent100 类型公开以下成员。

属性

  名称 说明
公共属性 BufferManager Sets the IDTSBufferManager100 of a pipeline component.
公共属性 ComponentMetaData Sets the IDTSComponentMetaData100 for a component.
公共属性 EventInfos Sets the IDTSEventInfos100 collection of the PipelineComponent object.
公共属性 LogEntryInfos Provides the IDTSLogEntryInfos100 object to a component.
公共属性 ReferenceTracker Sets the IDTSObjectReferenceTracker100.
公共属性 RequiredProductLevel Gets a value indicating the required SQL Server product level for the data flow component.
公共属性 VariableDispenser Sets the IDTSVariableDispenser100 of a data flow component.

页首

方法

  名称 说明
公共方法 Cleanup Frees resources and completes the execution of a component.
公共方法 PerformUpgrade Upgrades the component metadata to the version of the component that is installed on the local computer.
公共方法 PostExecute Called at the end of the execution of a component. The developer can supply code that executes after the component's main processing.
公共方法 PreExecute Called after PrepareForExecute, and before PrimeOutput and ProcessInput. The developer can supply code that executes once before the component performs its main processing.
公共方法 PrepareForExecute Called prior to PreExecute. The developer can supply code that executes once before the component performs its main processing and before the input buffers are available.
公共方法 PrimeOutput Called during package execution for components that add rows to the IDTSBuffer100; including source components and transformation components with asynchronous IDTSOutput100 objects. The developer needs to supply the code that adds the rows to the output buffers.
公共方法 ProcessInput Called on transformation and destination components that have IDTSInput100 objects that are connected to an upstream component. The developer needs to supply the code that processes the input buffers.

页首

注释

The IDTSRuntimeComponent100 interface defines the methods and properties that are called during execution of a data flow component. This interface is one of the two interfaces that all data flow components implement; the other is the IDTSDesigntimeComponent100 interface.

Managed component developers do not need to implement this interface directly but instead derive the methods from the PipelineComponent base class and override its implementation of these methods.