Berkeley DB .NET API Documentation |
Database..::.GetBothMultiple Method (DatabaseEntry, DatabaseEntry) |
Database Class See Also |
If a key/data pair in the database matches key
and data, return the key and all duplicate data
items.
Namespace:
BerkeleyDB
Assembly:
libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0
Syntax
C# |
---|
public KeyValuePair<DatabaseEntry, MultipleDatabaseEntry> GetBothMultiple( DatabaseEntry key, DatabaseEntry data ) |
Visual Basic (Declaration) |
---|
Public Function GetBothMultiple ( _ key As DatabaseEntry, _ data As DatabaseEntry _ ) As KeyValuePair(Of DatabaseEntry, MultipleDatabaseEntry) |
Visual C++ |
---|
public: KeyValuePair<DatabaseEntry^, MultipleDatabaseEntry^> GetBothMultiple( DatabaseEntry^ key, DatabaseEntry^ data ) |
Parameters
- key
- Type: BerkeleyDB..::.DatabaseEntry
The key to search for
- data
- Type: BerkeleyDB..::.DatabaseEntry
The data to search for
Return Value
A KeyValuePair<(Of <(TKey, TValue>)>) whose Key parameter is key and whose Value parameter is the retrieved data items.Exceptions
Exception | Condition |
---|---|
BerkeleyDB..::.NotFoundException | A NotFoundException is thrown if key and data are not in the database. |
BerkeleyDB..::.KeyEmptyException | A KeyEmptyException is thrown if the database is a QueueDatabase or RecnoDatabase database and key exists, but was never explicitly created by the application or was later deleted. |