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
注釈
この設定は、現在のノード レベル以下のアプリケーション ドメインまたはドメインに影響します。