Method used to parse an input stream (in the StreamReader) and produce Rows

Namespace: ScopeRuntime
Assembly: ScopeRuntime (in ScopeRuntime.exe) Version: 1.0.0.0 (10.2.2.0)

Syntax

C#
public override IEnumerable<Row> Extract(
	StreamReader reader,
	Row outputRow,
	string[] args
)
Visual Basic
Public Overrides Function Extract ( _
	reader As StreamReader, _
	outputRow As Row, _
	args As String() _
) As IEnumerable(Of Row)
Visual C++
public:
virtual IEnumerable<Row^>^ Extract(
	StreamReader^ reader, 
	Row^ outputRow, 
	array<String^>^ args
) override

Parameters

reader
Type: StreamReader
Input reader
outputRow
Type: ScopeRuntime..::..Row
Output row (i.e. "yield return outputRow"
args
Type: array<String>[]()[][]
Arguments

Return Value

An enumerable (i.e. use "yield return outputRow;"

See Also