Compartilhar via


ProcessModelSection.MemoryLimit Propriedade

Definição

Obtém ou define um valor que indica o tamanho de memória máximo permitido.

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

Valor da propriedade

Int32

O percentual da memória total do sistema. O padrão é 60%.

Atributos

Exemplos

O exemplo de código a seguir mostra como acessar a MemoryLimit propriedade.


 // 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

Comentários

O tamanho da memória é expresso como uma porcentagem da memória total do sistema. Essa é a quantidade de memória que um processo de trabalho pode consumir antes que ASP.NET reinicie (salte) ele.

Aplica-se a