PipelineBuffer.NextRow メソッド

定義

次の行に PipelineBuffer を進めます。

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

戻り値

バッファーが次の行に進んだ場合は true。それ以外の場合は false。

次のコード例では、PipelineBuffer メソッドを使用することにより、ループで入力 NextRow の各行を処理しています。

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  

注釈

NextRow メソッドは、PipelineBuffer をコレクションの次の行に進めます。 このメソッドは、利用可能な行がなくなるまで、true を返します。

適用対象