共用方式為


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 是否裝載于外部背景工作進程。 如果 Enabletrue ,ASP.NET 裝載于外部背景工作進程;否則,它會直接在 Inetinfo.exe 中執行。

注意

不建議在 Inetinfo.exe 中執行 ASP.NET,因為這牽涉到在本機系統安全性內容中執行應用程式。 ASP.NET 在 Internet Information Services (IIS) 6 原生模式中執行時,會忽略此設定,因此通常沒有任何理由將它設定為 false

適用於