BsonTrieNodeTValueGetChild Method |
Gets the child of this node for a given key byte.
Namespace:
MongoDB.Bson.IO
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed
Syntax public BsonTrieNode<TValue> GetChild(
byte keyByte
)
Public Function GetChild (
keyByte As Byte
) As BsonTrieNode(Of TValue)
member GetChild :
keyByte : byte -> BsonTrieNode<'TValue>
Parameters
- keyByte
- Type: SystemByte
The key byte.
Return Value
Type:
BsonTrieNodeTValueThe child node if it exists; otherwise, null.
See Also