PipelineBuffer.NextRow 方法

定义

PipelineBuffer 前移到下一行。

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

返回

如果缓冲区已升级到下一行,则为 true;否则为 false。

示例

下面的代码示例使用NextRow该方法循环访问输入PipelineBuffer的行。

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,直到没有更多的可用行。

适用于