Click or drag to resize

BsonClassMapTryRegisterClassMapTClass Method (ActionBsonClassMapTClass)

Registers a class map if it is not already registered.

Namespace:  MongoDB.Bson.Serialization
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax
public static bool TryRegisterClassMap<TClass>(
	Action<BsonClassMap<TClass>> classMapInitializer
)

Parameters

classMapInitializer
Type: SystemActionBsonClassMapTClass
The class map initializer (only called if the class map is not already registered).

Type Parameters

TClass
The class.

Return Value

Type: Boolean
True if this call registered the class map, false if the class map was already registered.
See Also