MvcHandler.IHttpHandler.IsReusable Property

Gets a value that indicates whether another request can use the IHttpHandler instance.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
Private ReadOnly Property IsReusable As Boolean 
    Implements IHttpHandler.IsReusable 
    Get
'Usage
Dim instance As MvcHandler 
Dim value As Boolean 

value = CType(instance, IHttpHandler).IsReusable
bool IHttpHandler.IsReusable { get; }
private:
virtual property bool IsReusable {
    bool get () sealed = IHttpHandler::IsReusable::get;
}
private abstract IsReusable : bool 
private override IsReusable : bool
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Property Value

Type: System.Boolean
true if the IHttpHandler instance is reusable; otherwise, false.

Implements

IHttpHandler.IsReusable

Remarks

This member is an explicit interface member implementation. It can be used only when the MvcHandler instance is cast to an IHttpHandler interface.

See Also

Reference

MvcHandler Class

System.Web.Mvc Namespace