BsonSerializer.Deserialize(TNominalType) Method (BsonDocument, Action(BsonDeserializationContext.Builder)) (original) (raw)

BsonSerializerDeserializeTNominalType Method (BsonDocument, ActionBsonDeserializationContextBuilder)

Deserializes an object from a BsonDocument.

Namespace: MongoDB.Bson.Serialization
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.10.0+569905ff5e778c38ea19d9d0392496a83e1704ed

Syntax

public static TNominalType Deserialize( BsonDocument document, Action configurator = null )

Public Shared Function Deserialize(Of TNominalType) ( document As BsonDocument, Optional configurator As Action(Of BsonDeserializationContextBuilder) = Nothing ) As TNominalType

static member Deserialize : document : BsonDocument * ?configurator : Action (* Defaults: let _configurator = defaultArg configurator null *) -> 'TNominalType

Parameters

document

Type: MongoDB.BsonBsonDocument
The BsonDocument.

configurator (Optional)

Type: SystemActionBsonDeserializationContextBuilder
The configurator.

Type Parameters

TNominalType

The nominal type of the object.

Return Value

Type: TNominalType
A deserialized value.

See Also

Reference