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
備註
此設定會影響目前節點層級和以下的應用程式域或網域。