3 types derived from JsonValue
System.Text.Json (3)
System\Text\Json\Nodes\JsonValueOfElement.cs (1)
12internal sealed class JsonValueOfElement : JsonValue<JsonElement>
System\Text\Json\Nodes\JsonValueOfTCustomized.cs (1)
15internal sealed class JsonValueCustomized<TValue> : JsonValue<TValue>
System\Text\Json\Nodes\JsonValueOfTPrimitive.cs (1)
13internal sealed class JsonValuePrimitive<TValue> : JsonValue<TValue>
4 references to JsonValue
System.Text.Json (4)
System\Text\Json\Nodes\JsonValue.cs (1)
169if (JsonValue<T>.TypeIsSupportedPrimitive &&
System\Text\Json\Nodes\JsonValueOfT.cs (3)
10[DebuggerTypeProxy(typeof(JsonValue<>.DebugView))] 132public JsonValue<TValue> _node; 134public DebugView(JsonValue<TValue> node)