Compartir a través de


PipelineBuffer.CurrentRow Propiedad

Gets the index of the current row in the PipelineBuffer.

Espacio de nombres:  Microsoft.SqlServer.Dts.Pipeline
Ensamblado:  Microsoft.SqlServer.PipelineHost (en Microsoft.SqlServer.PipelineHost.dll)

Sintaxis

'Declaración
Public Property CurrentRow As Integer 
    Get 
    Set
'Uso
Dim instance As PipelineBuffer 
Dim value As Integer 

value = instance.CurrentRow

instance.CurrentRow = value
public int CurrentRow { get; set; }
public:
property int CurrentRow {
    int get ();
    void set (int value);
}
member CurrentRow : int with get, set
function get CurrentRow () : int 
function set CurrentRow (value : int)

Valor de la propiedad

Tipo: System.Int32
The index of the current row in the PipelineBuffer.

Comentarios

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

Vea también

Referencia

PipelineBuffer Clase

Espacio de nombres Microsoft.SqlServer.Dts.Pipeline