2 references to StringConverter
System.Text.Json (2)
System\Text\Json\Nodes\JsonValue.CreateOverloads.cs (1)
228public static JsonValue? Create(string? value, JsonNodeOptions? options = null) => value != null ? new JsonValuePrimitive<string>(value, JsonMetadataServices.StringConverter!, options) : null;
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Converters.cs (1)
72Add(JsonMetadataServices.StringConverter);