共用方式為


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

備註

此設定會影響目前節點層級和以下的應用程式域或網域。

適用於

另請參閱