Click or drag to resize

BsonTrieTValueTryGetNode Method (BsonStream, BsonTrieNodeTValue)

Tries to get the node associated with a name read from a stream.

Namespace:  MongoDB.Bson.IO
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
public bool TryGetNode(
	BsonStream stream,
	out BsonTrieNode<TValue> node
)

Parameters

stream
Type: MongoDB.Bson.IOBsonStream
The stream.
node
Type: MongoDB.Bson.IOBsonTrieNodeTValue
The node.

Return Value

Type: Boolean
True if the node was found. If the node was found the stream is advanced over the name, otherwise the stream is repositioned to the beginning of the name.
See Also