ESRI.ArcGIS.ADF.Web
BeginProcessRequest Method
See Also 
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. 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. AsyncCallback
extraData
Any extra data needed to process the request.
Initiates an asynchronous call to the HTTP handler. BeginProcessRequest

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. 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. AsyncCallback
extraData
Any extra data needed to process the request.

Return Value

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

See Also

© 2010 All Rights Reserved.