共用方式為


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

屬性值

Int32

總系統記憶體的百分比。 預設為 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 () 重新開機之前,可取用的記憶體量。

適用於