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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic 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