JsonUnmappedMemberHandling Enum

Definition

Determines how JsonSerializer handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.

public enum class JsonUnmappedMemberHandling
public enum JsonUnmappedMemberHandling
type JsonUnmappedMemberHandling = 
Public Enum JsonUnmappedMemberHandling
Inheritance
JsonUnmappedMemberHandling

Fields

Disallow 1

Throws an exception when an unmapped property is encountered.

Skip 0

Silently skips any unmapped properties. This is the default behavior.

Applies to