I am trying to implement asynchronous web api call from asp.net
My code is similar like this
var response = httpClient.PostAsJsonAsync("api/apicontroller/execute/", executeModel).Result;
This is working in synchronous mode.
I do not want to wait for my webapi call to complete. How I can implement this using .net framework 4?