次の方法で共有


ProcessModelSection.MemoryLimit プロパティ

定義

許容メモリ サイズの上限を示す値を取得または設定します。

public:
 property int MemoryLimit { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("memoryLimit", DefaultValue=60)]
public int MemoryLimit { get; set; }
[<System.Configuration.ConfigurationProperty("memoryLimit", DefaultValue=60)>]
member this.MemoryLimit : int with get, set
Public Property MemoryLimit As Integer

プロパティ値

システム メモリ全体に対するパーセント。 既定は 60% です。

属性

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


 // Get the current MemoryLimit property value.
int memLimit = processModelSection.MemoryLimit;

 // Set the MemoryLimit property to 50.
 processModelSection.MemoryLimit = 50;
' Get the current MemoryLimit property value.
   Dim memLimit As Integer = _
   processModelSection.MemoryLimit

' Set the MemoryLimit property to 50.
processModelSection.MemoryLimit = 50

注釈

メモリ サイズは、システム メモリの合計に対する割合で表されます。 これは、ワーカー プロセスが再起動 (バウンス) を ASP.NET する前に消費できるメモリの量です。

適用対象