AI OnAI Off
Mar 25, 2015
Apr 17, 2015
Falcon/CMS/Core
Closed, Acceptance tests pass
Make it possible to use MVC 4 features for async action methods, for example:
[
RestStore("samplestore")] public class SampleStore : RestControllerBase{
[
HttpGet] public virtual async Task<ActionResult> GetAsync(int? id){
var result = await MyAsyncService.LoadDataAsync(); return Rest(result);}
}
More details:
http://www.asp.net/mvc/overview/performance/using-asynchronous-methods-in-aspnet-mvc-4