PipelineBuffer.NextRow Método

Definição

Avança o PipelineBuffer para a próxima linha.

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

Retornos

true se o buffer foi avançado para a próxima linha; caso contrário, false.

Exemplos

O exemplo de código a seguir percorre as linhas de uma entrada PipelineBuffer usando o 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  

Comentários

O NextRow método avança para a PipelineBuffer próxima linha em sua coleção. Ele retorna true até que não haja mais linhas disponíveis.

Aplica-se a