JsonUnmappedMemberHandling
Determines how JsonSerializer handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.
namespace System.Text.Json.Serialization
{
public enum JsonUnmappedMemberHandling
{
Skip,
Disallow
}
}