IDTSDesigntimeComponent100.OnInputPathAttached(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when an IDTSInput100 object is connected to another component through the IDTSPath100 interface.
public:
void OnInputPathAttached(int lInputID);
[System.Runtime.InteropServices.DispId(27)]
public void OnInputPathAttached (int lInputID);
[<System.Runtime.InteropServices.DispId(27)>]
abstract member OnInputPathAttached : int -> unit
Public Sub OnInputPathAttached (lInputID As Integer)
Parameters
- lInputID
- Int32
Contains the ID of the IDTSInput100 object that is attached.
- Attributes
Remarks
This method is called when a path is established between the IDTSInput100 identified by the lInputID
parameter and the IDTSOutput100 of an upstream component.
When programmatically establishing a path between two components, the AttachPathAndPropagateNotifications method is used to establish a path, and in response, the data flow engine calls this method on the affected components.