FixedSizeNodeTKey, TValueRead(Int32, TKey, TValue) Method
Reads the key-value pair at the specified index in the node.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override void Read(
int index,
TKey key,
TValue value
)
Protected Overrides Sub Read (
index As Integer,
key As TKey,
value As TValue
)
protected:
virtual void Read(
int index,
TKey key,
TValue value
) override
function Read(index, key, value);
Parameters
- index Int32
- The index at which to read the key-value pair.
- key TKey
- The key to be read from the node.
- value TValue
- The value to be read from the node.
This method reads both the key and value stored at the specified index within the node's storage.
It is typically used during tree operations to retrieve key-value pairs.
| IndexOutOfRangeException | Thrown if the provided index is out of range. |