ESRI.ArcGIS.ADF.Web
BeginProcessRequest Method
See Also  Send Feedback
ESRI.ArcGIS.ADF.Web Namespace > ImageHandler Class : BeginProcessRequest Method




context
An HttpContext object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. System.Web.HttpContext
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. System.AsyncCallback
extraData
Any extra data needed to process the request.
Initiates an asynchronous call to the HTTP handler. System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)

Syntax

Visual Basic (Declaration) 
Public Function BeginProcessRequest( _
   ByVal context As HttpContext, _
   ByVal cb As AsyncCallback, _
   ByVal extraData As Object _
) As IAsyncResult
Visual Basic (Usage)Copy Code
Dim instance As ImageHandler
Dim context As HttpContext
Dim cb As AsyncCallback
Dim extraData As Object
Dim value As IAsyncResult
 
value = instance.BeginProcessRequest(context, cb, extraData)
C# 
public IAsyncResult BeginProcessRequest( 
   HttpContext context,
   AsyncCallback cb,
   object extraData
)

Parameters

context
An HttpContext object that provides references to intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. System.Web.HttpContext
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. System.AsyncCallback
extraData
Any extra data needed to process the request.

Return Value

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

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2011 All Rights Reserved.