ProcessModelSection.MemoryLimit Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur indiquant la taille de mémoire maximale autorisée.
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
Valeur de propriété
Pourcentage de la mémoire système totale. La valeur par défaut est 60 %.
- Attributs
Exemples
L'exemple de code suivant illustre l'accès à la propriété 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
Remarques
La taille de la mémoire est exprimée en pourcentage de la mémoire système totale. Il s’agit de la quantité de mémoire qu’un processus de travail peut consommer avant de ASP.NET redémarrer (rebondir).