Aracılığıyla paylaş


ProcessModelSection.MemoryLimit Özellik

Tanım

İzin verilen en büyük bellek boyutunu belirten bir değer alır veya ayarlar.

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

Özellik Değeri

Int32

Toplam sistem belleği yüzdesi. Varsayılan değer yüzde 60'tır.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl erişeceklerini MemoryLimit gösterir.


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

Açıklamalar

Bellek boyutu, toplam sistem belleğinin yüzdesi olarak ifade edilir. Bu, bir çalışan işleminin yeniden başlatmadan (geri dönene) ASP.NET önce kullanabileceği bellek miktarıdır.

Şunlara uygulanır