I'm serializing/deserializing complex object and I have to use several custom Json Converters. Each custom converter is assigned to related interface by attribute - [JsonConverter(typeof(MySpecialConverter))].
Now I need access my service in overrided ReadJson method in custom JsonConvert class. I found lot of "solutions" but most of them doesn't use assigned converterts by attribute, so it's not working for my case.
What should be proper approach to achive my needs?
I use Newtonsoft.Json 13.0.1