CManagedComponentWrapperClass.OnInputPathAttached Method (Int32)

 

Applies To: SQL Server 2016 Preview

Called when an IDTSInput100 object of the component is attached to a downstream component.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

[DispIdAttribute(27)]
public virtual void OnInputPathAttached(
    int lInputID
)
public:
[DispIdAttribute(27)]
virtual void OnInputPathAttached(
    int lInputID
)
[<DispIdAttribute(27)>]
abstract OnInputPathAttached : 
        lInputID:int -> unit
[<DispIdAttribute(27)>]
override OnInputPathAttached : 
        lInputID:int -> unit
<DispIdAttribute(27)>
Public Overridable Sub OnInputPathAttached (
    lInputID As Integer
)

Parameters

Implements

IDTSDesigntimeComponent100.OnInputPathAttached(Int32)

Remarks

This method is called by the data flow task when the AttachPathAndPropagateNotifications method is called, and provides notification to the component that the input has been connected. It should not be called directly by developers who are programmatically editing a component.

See Also

CManagedComponentWrapperClass Class
Microsoft.SqlServer.Dts.Pipeline.Wrapper Namespace

Return to top