BsonSerializerLookupActualType Method |
Looks up the actual type of an object to be deserialized.
Namespace: MongoDB.Bson.SerializationAssembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.4.1
Syntax public static Type LookupActualType(
Type nominalType,
BsonValue discriminator
)
Public Shared Function LookupActualType (
nominalType As Type,
discriminator As BsonValue
) As Type
static member LookupActualType :
nominalType : Type *
discriminator : BsonValue -> Type
Parameters
- nominalType
- Type: SystemType
The nominal type of the object. - discriminator
- Type: MongoDB.BsonBsonValue
The discriminator.
Return Value
Type:
TypeThe actual type of the object.
See Also