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를 반환합니다.

적용 대상