Click or drag to resize

BsonSerializer.Deserialize<TNominalType> Method (Byte[], Action<BsonDeserializationContext.Builder>)

Deserializes an object from a BSON byte array.

Namespace:  MongoDB.Bson.Serialization
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public static TNominalType Deserialize<TNominalType>(
	byte[] bytes,
	Action<BsonDeserializationContext.Builder> configurator = null
)

Parameters

bytes
Type:System.Byte[]
The BSON byte array.
configurator (Optional)
Type: System.Action<BsonDeserializationContext.Builder>
The configurator.

Type Parameters

TNominalType
The nominal type of the object.

Return Value

Type: TNominalType
A deserialized value.
See Also