HttpRuntimeSection.Enable 属性

定义

获取或设置一个值,该值指示是否启用了应用程序域。

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

属性值

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

注解

此设置会影响当前节点级别和更低级别的应用程序域或域。

适用于

另请参阅