22 references to JsonValueType
System.Text.Json.SourceGeneration (22)
JsonSourceGenerator.Parser.cs (22)
1807
Dictionary<
JsonValueType
, List<string>> valueTypeToTypes = new();
1814
JsonValueType
valueTypes = GetSupportedJsonValueTypes(caseType, effectiveNumberHandling);
1816
for (int flag = 1; flag <= (int)
JsonValueType
.Boolean; flag <<= 1)
1818
JsonValueType
valueType = (
JsonValueType
)flag;
1834
foreach (KeyValuePair<
JsonValueType
, List<string>> kvp in valueTypeToTypes)
1859
private
JsonValueType
GetSupportedJsonValueTypes(ITypeSymbol type, JsonNumberHandling numberHandling)
1863
return
JsonValueType
.Any;
1872
return
JsonValueType
.Any;
1880
return
JsonValueType
.None;
1886
return
JsonValueType
.Boolean;
1900
?
JsonValueType
.Number |
JsonValueType
.String
1901
:
JsonValueType
.Number;
1919
return
JsonValueType
.String;
1927
return
JsonValueType
.Number;
1937
return
JsonValueType
.Any;
1942
return
JsonValueType
.Object;
1947
return
JsonValueType
.Array;
1956
return
JsonValueType
.Object;
1964
return
JsonValueType
.Array;
1969
return
JsonValueType
.Object;