HttpRuntimeSection.Enable 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否启用了应用程序域。
public:
property bool Enable { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enable", DefaultValue=true)]
public bool Enable { get; set; }
[<System.Configuration.ConfigurationProperty("enable", DefaultValue=true)>]
member this.Enable : bool with get, set
Public Property Enable As Boolean
属性值
如果已启用该应用程序域,则为 true
;否则为 false
。 默认值是 true
。
- 属性
示例
下面的示例演示如何使用 Enable 属性。
// Get the Enable property value.
Response.Write("Enable: " +
configSection.Enable + "<br>");
// Set the Enable property value to true.
configSection.Enable = true;
' Get the Enable property value.
Response.Write("Enable: " & _
configSection.Enable & "<br>")
' Set the Enable property value to true.
configSection.Enable = True
注解
此设置会影响当前节点级别和更低级别的应用程序域或域。