Page.AspCompatBeginProcessRequest(HttpContext, AsyncCallback, Object) Method

Definition

Initiates a request for Active Server Page (ASP) resources. This method is provided for compatibility with legacy ASP applications.

protected:
 IAsyncResult ^ AspCompatBeginProcessRequest(System::Web::HttpContext ^ context, AsyncCallback ^ cb, System::Object ^ extraData);
protected IAsyncResult AspCompatBeginProcessRequest (System.Web.HttpContext context, AsyncCallback cb, object extraData);
member this.AspCompatBeginProcessRequest : System.Web.HttpContext * AsyncCallback * obj -> IAsyncResult
Protected Function AspCompatBeginProcessRequest (context As HttpContext, cb As AsyncCallback, extraData As Object) As IAsyncResult

Parameters

context
HttpContext

An HttpContext with information about the current request.

cb
AsyncCallback

The callback method.

extraData
Object

Any extra data needed to process the request in the same manner as an ASP request.

Returns

An IAsyncResult object.

Remarks

Do not call this method.

Applies to