ProcessModelSection.MemoryLimit 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示所允许的最大内存大小。
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 重启 () 反弹之前可以使用的内存量。