10 references to Dictionary
Microsoft.AspNetCore.OpenApi (1)
Extensions\JsonTypeInfoExtensions.cs (1)
85
if (jsonTypeInfo is JsonTypeInfo { Kind: JsonTypeInfoKind.
Dictionary
})
System.Text.Json (9)
System\Text\Json\Schema\JsonSchemaExporter.cs (1)
333
case JsonTypeInfoKind.
Dictionary
:
System\Text\Json\Serialization\Metadata\JsonTypeInfo.cs (6)
123
if (Kind is not (JsonTypeInfoKind.Object or JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
))
153
if (Kind is not (JsonTypeInfoKind.Object or JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
))
183
if (Kind is not (JsonTypeInfoKind.Object or JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
))
219
if (Kind is not (JsonTypeInfoKind.Object or JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
))
1705
if (Kind is JsonTypeInfoKind.Object or JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
)
1803
case ConverterStrategy.Dictionary: return JsonTypeInfoKind.
Dictionary
;
System\Text\Json\Serialization\ReadStackFrame.cs (1)
117
public bool IsProcessingDictionary() => JsonTypeInfo.Kind is JsonTypeInfoKind.
Dictionary
;
System\Text\Json\ThrowHelper.Serialization.cs (1)
696
else if (typeInfo.Kind is JsonTypeInfoKind.Enumerable or JsonTypeInfoKind.
Dictionary
)