IHttpAsyncHandler Interface
When implemented by a class, defines the contract that HTTP asynchronous handler objects must implement.
For a list of all members of this type, see IHttpAsyncHandler Members.
System.Web.IHttpHandler
System.Web.IHttpAsyncHandler
[Visual Basic] Public Interface IHttpAsyncHandler Inherits IHttpHandler [C#] public interface IHttpAsyncHandler : IHttpHandler [C++] public __gc __interface IHttpAsyncHandler : public IHttpHandler [JScript] public interface IHttpAsyncHandler implements IHttpHandler
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 will get executed.
Requirements
Namespace: System.Web
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
Assembly: System.Web (in System.Web.dll)