BTreeBaseKey, ValueTryGetKey Method (Key, Byte, Key) |
Gets the value associated with the specified key.
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool TryGetKey(
Key key,
byte[] comparisonArray,
ref Key value
)
Public Function TryGetKey (
key As Key,
comparisonArray As Byte(),
ByRef value As Key
) As Boolean
public:
bool TryGetKey(
Key key,
array<unsigned char>^ comparisonArray,
Key% value
)
member TryGetKey :
key : 'Key *
comparisonArray : byte[] *
value : 'Key byref -> bool
Parameters
- key
- Type: Key
The key of the value to get. - comparisonArray
- Type: SystemByte
The comparison array associated with the key to get. - value
- Type: Key
When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the BTreeBase(Of Key) contains an element with the specified key; otherwise, false.
See Also