IDTSRuntimeComponent100 인터페이스

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

네임스페이스:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
어셈블리:  Microsoft.SqlServer.DTSPipelineWrap(Microsoft.SqlServer.DTSPipelineWrap.dll)

구문

‘선언
<GuidAttribute("9146EAB1-C5B9-4734-B4BA-7D45D0B327D1")> _
Public Interface IDTSRuntimeComponent100
‘사용 방법
Dim instance As IDTSRuntimeComponent100
[GuidAttribute("9146EAB1-C5B9-4734-B4BA-7D45D0B327D1")]
public interface IDTSRuntimeComponent100
[GuidAttribute(L"9146EAB1-C5B9-4734-B4BA-7D45D0B327D1")]
public interface class IDTSRuntimeComponent100
[<GuidAttribute("9146EAB1-C5B9-4734-B4BA-7D45D0B327D1")>]
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.

참고 항목

참조

Microsoft.SqlServer.Dts.Pipeline.Wrapper 네임스페이스