AsyncController.EndExecuteCore Method
Called by ASP.NET when the current asynchronous action has completed.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Overridable Sub EndExecuteCore ( _
asyncResult As IAsyncResult _
)
protected virtual void EndExecuteCore(
IAsyncResult asyncResult
)
protected:
virtual void EndExecuteCore(
IAsyncResult^ asyncResult
)
Parameters
- asyncResult
Type: System.IAsyncResult
The status of the asynchronous result.
Remarks
This method is called by ASP.NET while it is processing an asynchronous request. It cannot be called directly.