System.Text.Json.Serialization.JsonUnmappedMemberHandlingAttribute
When placed on a type, determines the JsonUnmappedMemberHandling configuration for the specific type, overriding the global UnmappedMemberHandling setting.
namespace System.Text.Json.Serialization
{
public class JsonUnmappedMemberHandlingAttribute : JsonAttribute
{
public JsonUnmappedMemberHandling UnmappedMemberHandling { get; }
public JsonUnmappedMemberHandlingAttribute(JsonUnmappedMemberHandling unmappedMemberHandling);
}
}