Is it possible to have have asynchronous calls to a RESTful API hosted under asp.net?
I have a long running process. I want to trigger it to start via an http GET request and then check on its progress periodically. How do I do this using the new C#5 async / await syntax?
I have a detailed example in this question: