MVVM - Going async with async command
We have been using async await for quite some time now. In this post we will see how to deal with async when using commands in the MVVM pattern.
We have been using async await for quite some time now. In this post we will see how to deal with async when using commands in the MVVM pattern.
When using async await we inevitably have to mark methods as async void. This leads to a lot of issues for programmers…
Async await is probably my favorite feature of C#. It is powerful and some basic understanding about how it is working is needed to get the best out of it.
Running asynchronous code is pretty easy with .NET and C#. As we sometimes need to cancel an ongoing asynchronous operation we will see, throughout this post...
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...
Récemment j’ai voulu baisser la qualité d’une image JPEG dans Windows Phone…