Page.AspCompatBeginProcessRequest Method
.NET Framework 3.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Initiates a request for Active Server Page (ASP) resources. This method is provided for compatibility with legacy ASP applications.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
'Declaration Protected Function AspCompatBeginProcessRequest ( _ context As HttpContext, _ cb As AsyncCallback, _ extraData As Object _ ) As IAsyncResult 'Usage Dim context As HttpContext Dim cb As AsyncCallback Dim extraData As Object Dim returnValue As IAsyncResult returnValue = Me.AspCompatBeginProcessRequest(context, cb, extraData)
protected IAsyncResult AspCompatBeginProcessRequest ( HttpContext context, AsyncCallback cb, Object extraData )
protected function AspCompatBeginProcessRequest ( context : HttpContext, cb : AsyncCallback, extraData : Object ) : IAsyncResult
Not applicable.
Parameters
- context
An HttpContext with information about the current request.
- cb
The callback method.
- extraData
Any extra data needed to process the request in the same manner as an ASP request.
Return Value
An IAsyncResult object.Community Additions
ADD
Show: