PipelineBuffer::SetEndOfRowset Method ()
Notifies the PipelineBuffer that a component has finished adding rows to the buffer.
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Data flow components call this method when they have finished adding rows to an OutputPipelineBuffer. Calling SetEndOfRowset notifies the data flow engine that a component has finished adding rows to the PipelineBuffer. The SetEndOfRowset method then sets the value of the EndOfRowset property to true on the final buffer.
The PipelineBuffer produces a NotOutputBufferException when the Mode of the PipelineBuffer is Input and this method is called.
The following example shows a source component that calls SetEndOfRowset to signal that it is finished adding rows to the PipelineBuffer.
Show: