JsonUnknownDerivedTypeHandling Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines how objects of a derived runtime type that has not been explicitly declared for polymorphic serialization should be handled.
public enum class JsonUnknownDerivedTypeHandling
public enum JsonUnknownDerivedTypeHandling
type JsonUnknownDerivedTypeHandling =
Public Enum JsonUnknownDerivedTypeHandling
- Inheritance
Fields
Name | Value | Description |
---|---|---|
FailSerialization | 0 | An object of undeclared runtime type will fail polymorphic serialization. |
FallBackToBaseType | 1 | An object of undeclared runtime type will fall back to the serialization contract of the base type. |
FallBackToNearestAncestor | 2 | An object of undeclared runtime type will revert to the serialization contract of the nearest declared ancestor type. Certain interface hierarchies are not supported due to diamond ambiguity constraints. |