IHttpAsyncHandler Interface
Defines the contract that HTTP asynchronous handler objects must implement.
Namespace: System.Web
Assembly: System.Web (in System.Web.dll)
The IHttpAsyncHandler type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | IsReusable | Gets a value indicating whether another request can use the IHttpHandler instance. (Inherited from IHttpHandler.) |
| Name | Description | |
|---|---|---|
![]() | BeginProcessRequest | Initiates an asynchronous call to the HTTP handler. |
![]() | EndProcessRequest | Provides an asynchronous process End method when the process ends. |
![]() | ProcessRequest | Enables processing of HTTP Web requests by a custom HttpHandler that implements the IHttpHandler interface. (Inherited from IHttpHandler.) |
An IHttpAsyncHandler class can be associated with a file name extension or a particular URL by a configuration file, in the httpHandlers configuration 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 be executed.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
