Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

JsonUnknownDerivedTypeHandling Enum

Definition

Namespace:
System.Text.Json.Serialization
Assembly:
System.Text.Json.dll
Package:
System.Text.Json v11.0.0-preview.5.26302.115
Source:
JsonUnknownDerivedTypeHandling.cs
Source:
JsonUnknownDerivedTypeHandling.cs
Source:
JsonUnknownDerivedTypeHandling.cs
Source:
JsonNodeOptions.cs

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
JsonUnknownDerivedTypeHandling

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.

Applies to


Feedback

Was this page helpful?