PipelineBuffer.RowCount Property
Gets the number of rows in the PipelineBuffer object.
Namespace: Microsoft.SqlServer.Dts.Pipeline
Assembly: Microsoft.SqlServer.PipelineHost (in Microsoft.SqlServer.PipelineHost.dll)
Syntax
'Declaration
Public ReadOnly Property RowCount As Integer
Get
'Usage
Dim instance As PipelineBuffer
Dim value As Integer
value = instance.RowCount
public int RowCount { get; }
public:
property int RowCount {
int get ();
}
member RowCount : int
function get RowCount () : int
Property Value
Type: System.Int32
The number of rows in the PipelineBuffer.
Remarks
The RowCount property contains the number of rows in the PipelineBuffer object.
The RowCount is always zero for OutputPipelineBuffer objects.
See Also