Get a precedence constraint.

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

Syntax

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

Parameters

path
Type: System..::..String
Path to the preceding constraint.

Return Value

Instance of DtsPrecedenceConstraint if found in the packge, otherwise throws ArgumentException.

Exceptions

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

See Also