PipelineBuffer.NextRow Método

Definición

Hace avanzar PipelineBuffer hasta la siguiente fila.

public:
 bool NextRow();
public bool NextRow ();
member this.NextRow : unit -> bool
Public Function NextRow () As Boolean

Devoluciones

true si el búfer se ha avanzado a la siguiente fila; de lo contrario, false.

Ejemplos

En el ejemplo de código siguiente se recorren las filas de una entrada PipelineBuffer mediante el NextRow método .

public override void ProcessInput( int inputID, PipelineBuffer buffer )  
{  
  while( buffer.NextRow() )  
  {  
     // TODO Process the row.  
  }  
}  
Public  Overrides Sub ProcessInput(ByVal inputID As Integer, ByVal buffer As PipelineBuffer)   
 While buffer.NextRow   
  ' TODO Process the row.  
 End While   
End Sub  

Comentarios

El NextRow método avanza a PipelineBuffer la siguiente fila de su colección. Devuelve true hasta que no haya más filas disponibles.

Se aplica a