HttpApplication.IHttpHandler.IsReusable 属性

定义

获取一个 Boolean 值,它指示其他请求是否可以使用 IHttpHandler 对象。Gets a Boolean value indicating whether another request can use the IHttpHandler object.

property bool System::Web::IHttpHandler::IsReusable { bool get(); };
bool System.Web.IHttpHandler.IsReusable { get; }
member this.System.Web.IHttpHandler.IsReusable : bool
 ReadOnly Property IsReusable As Boolean Implements IHttpHandler.IsReusable

属性值

Boolean

如果 IHttpHandler 实例可重用,则为 true;否则为 falsetrue if the IHttpHandler object is reusable; otherwise, false.

实现

注解

若要将属性显式设置 IsReusabletruefalse ,请提供覆盖 IsReusable 属性访问器的代码。To explicitly set the IsReusable property to true or false, provide code that overrides the IsReusable property accessor.

适用于