Sets values to properties in the package.

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

Syntax

C#
public void SetPropertiesForPaths(
	IEnumerable<KeyValuePair<string, Object>> pathValuePairs
)
Visual Basic
Public Sub SetPropertiesForPaths ( _
	pathValuePairs As IEnumerable(Of KeyValuePair(Of String, Object)) _
)
Visual C++
public:
void SetPropertiesForPaths(
	IEnumerable<KeyValuePair<String^, Object^>>^ pathValuePairs
)

Parameters

pathValuePairs
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'KeyValuePair<(Of <(<'String, Object>)>)>>)>)>
List of name-value pairs where name is a property name and value is a property value.

Exceptions

ExceptionCondition
System..::..ArgumentExceptionIf a property is not present in the package, ArgumentException is thrown.

See Also