Efficient post calls with HttpClient and JSON.NET
Previously we saw how to create efficient HTTP Get calls with HttpClient and JSON.NET. This time we will go a bit further by implementing POST calls.
Previously we saw how to create efficient HTTP Get calls with HttpClient and JSON.NET. This time we will go a bit further by implementing POST calls.
In Xamarin or other .NET Standard based platform we use the HttpClient class in order to do HTTP calls and JSON.NET to deserialize the response. In this post...