IHttpHandler::IsReusable Property
.NET Framework (current version)
Gets a value indicating whether another request can use the IHttpHandler instance.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::Booleantrue if the IHttpHandler instance is reusable; otherwise, false.
You explicitly set the IsReusable property to true or false by code you provide that overrides the IsReusable property accessor (getter).
The following code example writes four lines of text to the HTTP output stream in response to a client request for a page named handler.aspx. All requests for handler.aspx are serviced by the MyHttpHandler class in the namespace HandlerExample contained in the assembly HandlerTest.dll.
.NET Framework
Available since 1.1
Available since 1.1
Show: