共用方式為


ProcessModelSection.WebGarden 屬性

定義

取得或設定值,讓可使用的 CPU 執行背景工作處理序。

public:
 property bool WebGarden { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("webGarden", DefaultValue=false)]
public bool WebGarden { get; set; }
[<System.Configuration.ConfigurationProperty("webGarden", DefaultValue=false)>]
member this.WebGarden : bool with get, set
Public Property WebGarden As Boolean

屬性值

如果 CpuMask 用於將背景工作處理序對應至有資格的 CPU 編號,則為 true,如果忽略 CpuMask 則為 false

屬性

範例

下列程式碼範例示範如何存取 WebGarden 屬性。


// Get the current WebGarden property value.
bool webGarden = 
 processModelSection.WebGarden;

// Set the WebGarden property to true.
processModelSection.WebGarden = true;
' Get the current WebGarden property value.
   Dim webGarden As Boolean = _
   processModelSection.WebGarden

' Set the WebGarden property to true.
processModelSection.WebGarden = True

備註

屬性 WebGarden 必須與 屬性搭配 CpuMask 使用。

WebGarden如果 屬性設定 false 為 ,則會 CpuMask 忽略 屬性,而且只會執行一個背景工作進程。

注意

多處理器 Web 服務器稱為 Web 樹狀架構。

適用於