IHttpAsyncHandler.BeginProcessRequest Method
.NET Framework 2.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
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.Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: