I have a very simple ASP.NET MVC 4 controller:
public class HomeController : Controller { private const string MY_URL = \"http://smthing\"; private r
I had a similar issue, but was resolved by passing a CancellationToken as a parameter to the async method.