dotnet core Protect yourself when deserializing - System.Text.Json When dealing with deserialization of JSON, it's always a good idea to validate that it in fact deserialized correctly. But, how do you do that using System.Text.Json?
dotnet core Polymorphic deserialization with System.Text.Json How to do polymorphic deserialization with System.Text.Json by using a custom JsonConverter
dotnet Custom Dictionary JsonConverter using System.Text.Json How to customize the deserialization/serialization of Dictionary using System.Text.Json and a custom JsonConverter