Поделиться через


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 перезапуска (отказов).

Применяется к