PipelineBuffer::CurrentRow Property

 

Gets the index of the current row in the PipelineBuffer.

Namespace:   Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)

public:
property int CurrentRow {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The index of the current row in the PipelineBuffer.

The PipelineBuffer produces a RowIndexOutOfRangeException if CurrentRow is accessed before advancing the PipelineBuffer to the first row using the NextRow method.

Return to top
Show: