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.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override bool InternalRead(
	TKey key,
	TValue value,
	MatchFilterBase<TKey, TValue>? filter
)

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.
filter  MatchFilterBaseTKey, TValue
An optional filter to check if the key-value pair matches certain criteria.

Return Value

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

See Also