asp.net.ph

IHttpAsyncHandler Interface

System.Web Namespace


When implemented by a class, defines the contract that HTTP asynchronous handler objects must implement.

IHttpAsyncHandler Interface Members

Collapse   Methods

Visibility Name Parameters Return Type
public BeginProcessRequest ( HttpContext context , AsyncCallback cb , Object extraData ) IAsyncResult
public EndProcessRequest ( IAsyncResult result ) Void

Classes that Implement IHttpAsyncHandler


Class Description
HttpApplication Defines the methods, properties, and events common to all application objects within an ASP.NET application. This class is the base class for applications defined by the user in the global.asax file.

Remarks

An IHttpAsyncHandler class can be associated with a file name extension or a particular URL by a configuration file, in the <httpHandlers> section. The ASP.NET infrastructure will then instantiate and call the handler when the corresponding request is received.

Alternatively, the handler can be defined in an .ashx file and when the corresponding request is received for the .ashx file, the hander executes.

Syntax


To call a method:

IHttpAsyncHandler.methodName ( arguments );
  C# VB

To return the value of a method:

Type var = IHttpAsyncHandler.methodName ( arguments );
  C# VB

Skip Navigation Links



Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph