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.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override bool InternalReadWhile(
TKey key,
TValue value,
TKey upperBounds
)
Protected Overrides Function InternalReadWhile (
key As TKey,
value As TValue,
upperBounds As TKey
) As Boolean
protected:
virtual bool InternalReadWhile(
TKey key,
TValue value,
TKey upperBounds
) override
function InternalReadWhile(key, value, upperBounds);
- 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.
Booleantrue if the key-value pair matches the condition; otherwise,
false.