JsonDictionaryConverter<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);
}
}