BsonTypeMapperMapToDotNetValue Method (BsonValue, BsonTypeMapperOptions) |
Maps a BsonValue to a .NET value.
Namespace:
MongoDB.Bson
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax public static Object MapToDotNetValue(
BsonValue bsonValue,
BsonTypeMapperOptions options
)
Public Shared Function MapToDotNetValue (
bsonValue As BsonValue,
options As BsonTypeMapperOptions
) As Object
static member MapToDotNetValue :
bsonValue : BsonValue *
options : BsonTypeMapperOptions -> Object
Parameters
- bsonValue
- Type: MongoDB.BsonBsonValue
The BsonValue. - options
- Type: MongoDB.BsonBsonTypeMapperOptions
The BsonTypeMapperOptions.
Return Value
Type:
ObjectThe mapped .NET value.
See Also