Initializes a new instance of the FakeSourceAttribute class.

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

Syntax

C#
public FakeSourceAttribute(
	string pathToSourceComponent,
	string[] outputNames,
	string[] outputData
)
Visual Basic
Public Sub New ( _
	pathToSourceComponent As String, _
	outputNames As String(), _
	outputData As String() _
)
Visual C++
public:
FakeSourceAttribute(
	String^ pathToSourceComponent, 
	array<String^>^ outputNames, 
	array<String^>^ outputData
)

Parameters

pathToSourceComponent
Type: System..::..String
Name of a source component in a data flow to replace.
outputNames
Type: array<System..::..String>[]()[][]
Array of output names of the original source component.
outputData
Type: array<System..::..String>[]()[][]
Array of output data. It can be comma separated value or a path to the file containing fake data. If a path to a file is given, RowDelimiter property is ignored.

See Also