Gets an executable. All package containers will be recursively searched.

Namespace: SSIS.Test.Dts
Assembly: SSIS.Test (in SSIS.Test.dll) Version: 3.0.0.236 (3.0.0.236)

Syntax

C#
public DtsExecutable GetChildExecutable(
	string path
)
Visual Basic
Public Function GetChildExecutable ( _
	path As String _
) As DtsExecutable
Visual C++
public:
DtsExecutable^ GetChildExecutable(
	String^ path
)

Parameters

path
Type: System..::..String
Path to the executable. For example, \[Customer Package]\[Load Customers DataFlow]

Return Value

Instance of DtsExecutable if found in the package, otherwise throws an ArgumentException.

Exceptions

ExceptionCondition
System..::..ArgumentExceptionIf a child executable for a given path is not present in the package, ArgumentException is thrown.

See Also