BsonTypeMapperMapToBsonValue Method (Object, BsonType) |
Maps an object to a specific BsonValue type.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public static BsonValue MapToBsonValue(
Object value,
BsonType bsonType
)
Public Shared Function MapToBsonValue (
value As Object,
bsonType As BsonType
) As BsonValue
static member MapToBsonValue :
value : Object *
bsonType : BsonType -> BsonValue
Parameters
- value
- Type: SystemObject
An object. - bsonType
- Type: MongoDB.BsonBsonType
The BsonType to map to.
Return Value
Type:
BsonValueA BsonValue of the desired type (or BsonNull.Value if value is null and bsonType is Null).
See Also