次の方法で共有


ProcessModelSection.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

プロパティ値

プロセス モデルが有効な場合は true。それ以外の場合は false。 既定値は true です。

属性

Enable プロパティへのアクセス方法を次のコード例に示します。


// Get the current Enable property value.

bool enable = processModelSection.Enable;

// Set the Enable property to false.
processModelSection.Enable = false;
' Get the current Enable property value.
Dim enable As Boolean = processModelSection.Enable

' Set the Enable property to false.
processModelSection.Enable = False

注釈

プロパティは Enable 、ASP.NET が外部ワーカー プロセスでホストされているかどうかを指定します。 が trueの場合Enable、ASP.NET は外部ワーカー プロセスでホストされます。それ以外の場合は、Inetinfo.exeで直接実行されます。

Note

Inetinfo.exeで ASP.NET を実行することは推奨されません。これは、ローカル システムのセキュリティ コンテキストでアプリケーションを実行する必要があるためです。 ASP.NET インターネット インフォメーション サービス (IIS) 6 ネイティブ モードで実行する場合、この設定は無視されるため、通常は に false設定する理由はありません。

適用対象