<PackageReference Include="System.Text.Json" Version="9.0.5" />

JsonDictionaryConverter<TDictionary>

abstract class JsonDictionaryConverter<TDictionary> : JsonResumableConverter<TDictionary>
namespace System.Text.Json.Serialization { internal abstract class JsonDictionaryConverter<TDictionary> : JsonResumableConverter<TDictionary> { internal override bool SupportsCreateObjectDelegate => true; private protected sealed override ConverterStrategy GetDefaultConverterStrategy() { return ConverterStrategy.Dictionary; } protected internal abstract bool OnWriteResume(Utf8JsonWriter writer, TDictionary dictionary, JsonSerializerOptions options, ref WriteStack state); } }