ProcessModelSection.CpuMask 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示多處理器伺服器上的哪些處理器有資格執行 ASP.NET 處理序。
public:
property int CpuMask { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("cpuMask", DefaultValue="0xffffffff")]
public int CpuMask { get; set; }
[<System.Configuration.ConfigurationProperty("cpuMask", DefaultValue="0xffffffff")>]
member this.CpuMask : int with get, set
Public Property CpuMask As Integer
屬性值
編號,表示要套用的位元模式。 預設值為 0xFFFFFFFF。
- 屬性
範例
下列程式碼範例示範如何存取 CpuMask 屬性。
// Get the current CpuMask property value.
int cpuMask =
processModelSection.CpuMask;
// Set the CpuMask property to 0x000000FF.
processModelSection.CpuMask = 0x000000FF;
' Get the current CpuMask property value.
Dim cpuMask As Integer = _
processModelSection.CpuMask
' Set the CpuMask property to 0x000000FF.
processModelSection.CpuMask = &HFF
備註
值 CpuMask 會指定位模式,指出符合執行 ASP.NET 執行緒的 CPU 資格。
WebGarden如果 屬性設定 true
為 ,則會 CpuMask 將背景工作進程限制為合格 CPU 的數目。 允許的背景工作進程數目上限等於 CPU 數目。 根據預設,所有 CPU 都會啟用,ASP.NET 為每個 CPU 啟動一個進程。
WebGarden如果 屬性設定 false
為 ,則會 CpuMask 忽略 屬性,而且只會執行一個背景工作進程。