OwinHttpHandler.BeginProcessRequest Method (HttpContextBase, AsyncCallback, Object)

 

Initiates an asynchronous call to the HTTP handler.

Namespace:   Microsoft.Owin.Host.SystemWeb
Assembly:  Microsoft.Owin.Host.SystemWeb (in Microsoft.Owin.Host.SystemWeb.dll)

Syntax

public IAsyncResult BeginProcessRequest(
    HttpContextBase httpContext,
    AsyncCallback callback,
    object extraData
)
public:
IAsyncResult^ BeginProcessRequest(
    HttpContextBase^ httpContext,
    AsyncCallback^ callback,
    Object^ extraData
)
member BeginProcessRequest : 
        httpContext:HttpContextBase *
        callback:AsyncCallback *
        extraData:Object -> IAsyncResult
Public Function BeginProcessRequest (
    httpContext As HttpContextBase,
    callback As AsyncCallback,
    extraData As Object
) As IAsyncResult

Parameters

  • httpContext
    Type: System.Web.HttpContextBase

    An System.Web.HttpContextBase object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.

  • callback
    Type: System.AsyncCallback

    The System.AsyncCallback to call when the asynchronous method call is complete. If callback is null, the delegate is not called.

  • extraData
    Type: System.Object

    Any extra data needed to process the request.

Return Value

Type: System.IAsyncResult

An System.IAsyncResult that contains information about the status of the process.

See Also

OwinHttpHandler Class
Microsoft.Owin.Host.SystemWeb Namespace

Return to top