Click or drag to resize

TopologyVersionFromBsonDocument Method

Attempts to create a TopologyVersion from the supplied BsonDocument.

Namespace:  MongoDB.Driver.Core.Servers
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
public static TopologyVersion FromBsonDocument(
	BsonDocument document
)

Parameters

document
Type: MongoDB.BsonBsonDocument
The document. Should contain an ObjectId named "processId" and a BsonInt64 named "counter".

Return Value

Type: TopologyVersion
A TopologyVersion if one could be constructed from the supplied document and null otherwise.
See Also