Click or drag to resize

BsonTypeMapperMapToBsonValue Method (Object, BsonType)

Maps an object to a specific BsonValue type.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public static BsonValue MapToBsonValue(
	Object value,
	BsonType bsonType
)

Parameters

value
Type: SystemObject
An object.
bsonType
Type: MongoDB.BsonBsonType
The BsonType to map to.

Return Value

Type: BsonValue
A BsonValue of the desired type (or BsonNull.Value if value is null and bsonType is Null).
See Also