CManagedComponentWrapperClass.OnInputPathDetached Method (Int32)

 

Applies To: SQL Server 2016 Preview

Called when the IDTSInput100 object of the component is disconnected from an upstream component.

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

Syntax

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

Parameters

Implements

IDTSDesigntimeComponent100.OnInputPathDetached(Int32)

Remarks

This method is called by the data flow task when the IDTSInput100 object of a component is detached from an IDTSPath100 object. 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