BsonSerializerLookupActualType Method |
Looks up the actual type of an object to be deserialized.
Namespace:
MongoDB.Bson.Serialization
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
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