MvcHandler.BeginProcessRequest Method (HttpContextBase, AsyncCallback, Object)
Visual Studio 2010
Called by ASP.NET to begin asynchronous request processing using the base HTTP context.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
protected internal virtual IAsyncResult BeginProcessRequest( HttpContextBase httpContext, AsyncCallback callback, Object state )
Parameters
- httpContext
- Type: System.Web.HttpContextBase
The HTTP context.
- callback
- Type: System.AsyncCallback
The asynchronous callback method.
- state
- Type: System.Object
The state of the asynchronous object.
If the controller that handles the request is not asynchronous, the request is processed synchronously.
For more information about the differences between this method and MvcHttpHandler.BeginProcessRequest(HttpContext, AsyncCallback, Object), see the "Remarks" section of the MvcHandler class overview.
Community Additions
ADD
Show: