IHttpAsyncHandler.BeginProcessRequest Method
.NET Framework 3.0
Initiates an asynchronous call to the HTTP handler.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
IAsyncResult^ BeginProcessRequest ( HttpContext^ context, AsyncCallback^ cb, Object^ extraData )
IAsyncResult BeginProcessRequest ( HttpContext context, AsyncCallback cb, Object extraData )
function BeginProcessRequest (
context : HttpContext,
cb : AsyncCallback,
extraData : Object
) : IAsyncResult
Not applicable.
Parameters
- context
An HttpContext object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
- cb
The AsyncCallback to call when the asynchronous method call is complete. If cb is a null reference (Nothing in Visual Basic), the delegate is not called.
- extraData
Any extra data needed to process the request.
Return Value
An IAsyncResult that contains information about the status of the process.Community Additions
ADD
Show: