PipelineBuffer.NextRow 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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,直到没有更多的可用行。