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 重启 () 反弹之前可以使用的内存量。

适用于