KeyRange Method (DatabaseEntry)

BerkeleyDB

Return an estimate of the proportion of keys that are less than, equal to, and greater than the specified key.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public KeyRange KeyRange(
	DatabaseEntry key
)
Visual Basic (Declaration)
Public Function KeyRange ( _
	key As DatabaseEntry _
) As KeyRange
Visual C++
public:
KeyRange^ KeyRange(
	DatabaseEntry^ key
)

Parameters

key
Type: BerkeleyDB..::.DatabaseEntry
The key to search for

Return Value

An estimate of the proportion of keys that are less than, equal to, and greater than the specified key.

See Also