Metodo IsEndOfRowset
Specifies whether an IDTSBuffer100 has reached the end of its collection of rows.
Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
Sintassi
'Dichiarazione
Function IsEndOfRowset As Boolean
'Utilizzo
Dim instance As IDTSBuffer100
Dim returnValue As Boolean
returnValue = instance.IsEndOfRowset()
bool IsEndOfRowset()
bool IsEndOfRowset()
abstract IsEndOfRowset : unit -> bool
function IsEndOfRowset() : boolean
Valore restituito
Tipo: System. . :: . .Boolean
true if there are more rows coming from the upstream component; otherwise, false.
Osservazioni
The IsEndOfRowset method returns a value that indicates whether the upstream component has finished adding rows to its output buffer. If the value is true, the component will not receive further calls to theProcessInput method.
Vedere anche