CManagedComponentWrapperClass.OnOutputPathAttached Method (Int32)

 

Applies To: SQL Server 2016 Preview

Called when an IDTSOutput100 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(28)]
public virtual void OnOutputPathAttached(
    int lOutputID
)
public:
[DispIdAttribute(28)]
virtual void OnOutputPathAttached(
    int lOutputID
)
[<DispIdAttribute(28)>]
abstract OnOutputPathAttached : 
        lOutputID:int -> unit
[<DispIdAttribute(28)>]
override OnOutputPathAttached : 
        lOutputID:int -> unit
<DispIdAttribute(28)>
Public Overridable Sub OnOutputPathAttached (
    lOutputID As Integer
)

Parameters

Implements

IDTSDesigntimeComponent100.OnOutputPathAttached(Int32)

Remarks

This method is called by the data flow task when the AttachPathAndPropagateNotifications method is called, to notify the component of the event. 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