次の方法で共有


ProcessModelSection.CpuMask プロパティ

定義

マルチプロセッサ サーバーのどのプロセッサが 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 、スレッドを実行できる CPU を示すビット パターン ASP.NET 指定します。 プロパティが WebGardentrue設定されている場合、 CpuMask ワーカー プロセスは対象となる CPU の数に制限されます。 ワーカー プロセスの最大許容数は、CPU の数と同じです。 既定では、すべての CPU が有効になり、ASP.NET は CPU ごとに 1 つのプロセスを起動します。 プロパティが WebGardenfalse設定されている場合、 CpuMask 属性は無視され、ワーカー プロセスは 1 つだけ実行されます。

適用対象