Partager via


Propriété PipelineBuffer.CurrentRow

Gets the index of the current row in the PipelineBuffer.

Espace de noms :  Microsoft.SqlServer.Dts.Pipeline
Assembly :  Microsoft.SqlServer.PipelineHost (en Microsoft.SqlServer.PipelineHost.dll)

Syntaxe

'Déclaration
Public Property CurrentRow As Integer 
    Get 
    Set
'Utilisation
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)

Valeur de propriété

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

Notes

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

Voir aussi

Référence

PipelineBuffer Classe

Espace de noms Microsoft.SqlServer.Dts.Pipeline