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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
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