4 references to JsonNode
Microsoft.AspNetCore.Http.Abstractions.Tests (1)
ProblemDetailsJsonConverterTest.cs (1)
106var serializerOptions = new JsonSerializerOptions(JsonSerializerOptions) { UnknownTypeHandling = System.Text.Json.Serialization.JsonUnknownTypeHandling.JsonNode };
System.Text.Json (3)
src\libraries\System.Text.Json\Common\JsonUnknownTypeHandling.cs (1)
16/// A type declared as <see cref="object"/> is deserialized as a <see cref="JsonNode"/>.
System\Text\Json\Serialization\Converters\Object\ObjectConverter.cs (2)
107Debug.Assert(options.UnknownTypeHandling == JsonUnknownTypeHandling.JsonNode); 133Debug.Assert(options.UnknownTypeHandling == JsonUnknownTypeHandling.JsonNode);