http://www.asp.net/web-api/overview/web-api-clients/calling-a-web-api-from-a-net-client
I have been using this tutorial to learn how to send and retrieve data from a web API
. However is there another way without using Tasks
and await
? Sometimes my requests are taking a long time to return when others are relatively quick.
Are there any other tutorials that may help? What is the best way to call my web api
client to login? I feel I shouldn't be using await
and async
for this sort of thing but could really use some help.