asp.net.ph

IHttpAsyncHandler.BeginProcessRequest Method

System.Web Namespace   IHttpAsyncHandler Interface


Initiates an asynchronous call to the HTTP handler.

[ VB ]
Function BeginProcessRequest ( _
   ByVal context As HttpContext, _
   ByVal cb As AsyncCallback, _
   ByVal extraData As Object _
) As IAsyncResult

[ C# ]
IAsyncResult BeginProcessRequest (
   HttpContext context,
   AsyncCallback cb,
   object extraData
);

[ C++ ]
IAsyncResult* BeginProcessRequest (
   HttpContext* context,
   AsyncCallback* cb,
   Object* extraData
);

[ JScript ]
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.

See Also

IHttpAsyncHandler Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph