Method GetSerializer
- Namespace
- MongoDB.Bson.Serialization
- Assembly
- MongoDB.Bson.dll
GetSerializer(Type)
Gets the serializer for the specified type
.
If none is already registered, the serialization providers will be used to create a serializer and it will be automatically registered.
Parameters
type
TypeThe type.
Returns
- IBson
Serializer The serializer.
GetSerializer<T>()
Gets the serializer for the specified T
.
If none is already registered, the serialization providers will be used to create a serializer and it will be automatically registered.
Returns
- IBson
Serializer <T> The serializer.
Type Parameters
T
The value type of the serializer.