Click or drag to resize

BsonMapperDeserializationCallback Delegate

Delegate for deserialization callback.

Namespace: Internal.LiteDB
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public delegate BsonValue DeserializationCallback(
	BsonMapper sender,
	Type target,
	BsonValue value
)

Parameters

sender  BsonMapper
The BsonMapper instance that triggered the deserialization.
target  Type
The target type for deserialization.
value  BsonValue
The BsonValue to be deserialized.

Return Value

BsonValue
The deserialized BsonValue.
See Also