Adds variable to collection.

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

Syntax

C#
public void AddProperty(
	string path,
	Object value
)
Visual Basic
Public Sub AddProperty ( _
	path As String, _
	value As Object _
)
Visual C++
public:
void AddProperty(
	String^ path, 
	Object^ value
)

Parameters

path
Type: System..::..String
Path to the variable in the package. For example, \[Customer Package]\[Load Customers DataFlow].[Disable]
value
Type: System..::..Object
Value of a property.

See Also