Click or drag to resize

BsonSerializerRegistryTryRegisterSerializer Method

Tries to register the serializer.

Namespace:  MongoDB.Bson.Serialization
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax
public bool TryRegisterSerializer(
	Type type,
	IBsonSerializer serializer
)

Parameters

type
Type: SystemType
The type.
serializer
Type: MongoDB.Bson.SerializationIBsonSerializer
The serializer.

Return Value

Type: Boolean
True if the serializer was registered on this call, false if the same serializer was already registered on a previous call, throws an exception if a different serializer was already registered.
See Also