GenericEncodedNodeScannerTKey, TValueInternalReadWhile(TKey, TValue, TKey) Method

Reads and decodes the next key-value pair at the current position, advances the position, and continues reading as long as the key is less than the specified upper bounds.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override bool InternalReadWhile(
	TKey key,
	TValue value,
	TKey upperBounds
)

Parameters

key  TKey
The key to be populated with the read key data.
value  TValue
The value to be populated with the read value data.
upperBounds  TKey
The upper bounds for keys, reading continues as long as the key is less than this value.

Return Value

Boolean
true if the key-value pair matches the condition; otherwise, false.

See Also