| Author: mahendrakiran 13 Nov 2008 | Member Level: Gold Points : 2 |
The low level Request and Response API to service incoming Http requests are Http Handlers in Asp.Net. All handlers implement the IHttpHandler interface, which is located in the System.Web namespace. Handlers are somewhat analogous to Internet Server Application Programming Interface (ISAPI) extensions.
The following are the methods in Http Handlers.
Method Name Description.
ProcessRequest Used to call Http Requests.
IsReusable To check the reusability of same instance handler with a new request of same type.
To create an HTTP handler, you must implement the IHttpHandler interface. The IHttpHandler interface has one method and one property with the following signatures:
void ProcessRequest(HttpContext); bool IsReusable {get;}
|