System.Web Namespace IHttpHandler Interface
Gets a value indicating whether another request can use the IHttpHandler instance.
[ VB ]
ReadOnly Property IsReusable As Boolean
[ C# ]
bool IsReusable {get;}
[ C++ ]
bool get_IsReusable ( );
[ JScript ]
abstract function get IsReusable ( ) : Boolean;
true 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.
For a code example, see the Example section of the documentation for the ProcessRequest method.
IHttpHandler Members