Share via


SoapHttpRouter.System.Web.IHttpAsyncHandler.BeginProcessRequest Method

Initiates an asynchronous call to the HTTP handler.

Namespace: Microsoft.Web.Services3.Messaging
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)

Usage

'Usage
Dim context As HttpContext
Dim callback As AsyncCallback
Dim extraData As Object
Dim returnValue As IAsyncResult
Dim soapHttpRouter1 As SoapHttpRouter
returnValue = DirectCast(soapHttpRouter1, IHttpAsyncHandler).BeginProcessRequest(context, callback, extraData)

Syntax

'Declaration
Private Function System.Web.IHttpAsyncHandler.BeginProcessRequest( _
    ByVal context As HttpContext, _
    ByVal callback As AsyncCallback, _
    ByVal extraData As Object _
) As IAsyncResult
private IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(
    HttpContext context, 
    AsyncCallback callback, 
    object extraData
);
private:
virtual IAsyncResult^ arbitrary-name(
    HttpContext^ context,
    AsyncCallback^ callback,
    Object^ extraData
);
private IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(
    HttpContext context, 
    AsyncCallback callback, 
    System.Object extraData
);
private final function System.Web.IHttpAsyncHandler.BeginProcessRequest(
     context : HttpContext, 
     callback : AsyncCallback, 
     extraData : Object
) : IAsyncResult;

Parameters

  • context
    An System.Web.HttpContext object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.
  • callback
    The System.AsyncCallback to call when the asynchronous method call is complete. If callback is null, the delegate is not called.
  • extraData
    Any extra data needed to process the request.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server

Target Platforms

See Also

Reference

SoapHttpRouter Class
SoapHttpRouter Members
Microsoft.Web.Services3.Messaging Namespace