2 instantiations of JsonValueOfElement
System.Text.Json (2)
System\Text\Json\Nodes\JsonValueOfElement.cs (1)
20internal override JsonNode DeepCloneCore() => new JsonValueOfElement(Value.Clone(), Options);
System\Text\Json\Serialization\Converters\Node\JsonNodeConverter.cs (1)
76node = new JsonValueOfElement(element, options);
1 reference to JsonValueOfElement
System.Text.Json (1)
System\Text\Json\Nodes\JsonNode.To.cs (1)
52if (this is JsonValueOfElement { Value.ValueKind: JsonValueKind.String } jsonElement)