Do you have to inherit from AsyncController when you’re using Async/Await in your controller or will it not truly be asynchronous if you use Controller? How about Asp.net web api? I don’t think there is a AsyncApiController. Currently i’m just inheriting from controller and its working but is it truly async?
Do you have to inherit from AsyncController when you’re using Async/Await in your controller
Share
The XML comment for the
AsyncControllerclass in MVC 4 saysThe class itself is empty.
In other words, you don’t need it.