MvcHttpHandler.BeginProcessRequest Method
Called by ASP.NET to begin asynchronous request processing.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | BeginProcessRequest(HttpContext, AsyncCallback, Object) | Called by ASP.NET to begin asynchronous request processing. |
![]() | BeginProcessRequest(HttpContextBase, AsyncCallback, Object) | Called by ASP.NET to begin asynchronous request processing. |
MvcHttpHandler.BeginProcessRequest Method (HttpContext, AsyncCallback, Object)
Called by ASP.NET to begin asynchronous request processing.
Protected Overridable Function BeginProcessRequest ( httpContext As HttpContext, callback As AsyncCallback, state As Object ) As IAsyncResult
Parameters
- httpContext
-
Type:
System.Web.HttpContext
The HTTP context.
- callback
-
Type:
System.AsyncCallback
The asynchronous callback method.
- state
-
Type:
System.Object
The state.
For more information about the differences between this method and the one in MvcHandler, see the "Remarks" sections of the MvcHttpHandler class overview.
MvcHttpHandler.BeginProcessRequest Method (HttpContextBase, AsyncCallback, Object)
Called by ASP.NET to begin asynchronous request processing.
Protected Friend Overridable Function BeginProcessRequest ( httpContext As HttpContextBase, callback As AsyncCallback, state As Object ) As IAsyncResult
Parameters
- httpContext
-
Type:
System.Web.HttpContextBase
The base HTTP context.
- callback
-
Type:
System.AsyncCallback
The asynchronous callback method.
- state
-
Type:
System.Object
The state.
For more information about the differences between this method and the one in MvcHandler, see the "Remarks" sections of the MvcHttpHandler class overview.
Show:
