Controller::DisableAsyncSupport Property
Gets whether to disable the asynchronous support for the controller.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Property Value
Type: System::Booleantrue to disable the asynchronous support for the controller; otherwise, false.
This flag is for backwards compatibility. ASP.NET MVC 4. allows a controller to support asynchronous patterns. This means ExecuteCore doesn't get called on derived classes. Derived classes can override this flag and set to true if they still need ExecuteCore to be called.
Show: