GenericEncodedNodeScannerTKey, TValueInternalRead(TKey, TValue, MatchFilterBaseTKey, TValue) Method
Reads and decodes the next key-value pair at the current position, advances the position, and checks if it matches the specified filter.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override bool InternalRead(
TKey key,
TValue value,
MatchFilterBase<TKey, TValue>? filter
)
Protected Overrides Function InternalRead (
key As TKey,
value As TValue,
filter As MatchFilterBase(Of TKey, TValue)
) As Boolean
protected:
virtual bool InternalRead(
TKey key,
TValue value,
MatchFilterBase<TKey, TValue>^ filter
) override
function InternalRead(key, value, filter);
- key TKey
- The key to be populated with the read key data.
- value TValue
- The value to be populated with the read value data.
- filter MatchFilterBaseTKey, TValue
- An optional filter to check if the key-value pair matches certain criteria.
Booleantrue if the key-value pair matches the filter; otherwise,
false.