Partage via


CacheSection.PrivateBytesLimit Propriété

Définition

Obtient ou définit une valeur qui indique la taille maximale de l'espace privé du processus de travail.

public:
 property long PrivateBytesLimit { long get(); void set(long value); };
[System.Configuration.ConfigurationProperty("privateBytesLimit", DefaultValue=0)]
[System.Configuration.LongValidator(MinValue=0)]
public long PrivateBytesLimit { get; set; }
[<System.Configuration.ConfigurationProperty("privateBytesLimit", DefaultValue=0)>]
[<System.Configuration.LongValidator(MinValue=0)>]
member this.PrivateBytesLimit : int64 with get, set
Public Property PrivateBytesLimit As Long

Valeur de propriété

Taille maximale, en octets, de l'espace privé alloué au processus de travail. La valeur par défaut est 0.

Attributs

Exemples

// Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit = 
    cacheSection.PrivateBytesLimit + 10;
' Increase the PrivateBytesLimit property to 0.
cacheSection.PrivateBytesLimit = cacheSection.PrivateBytesLimit + 10

Remarques

La PrivateBytesLimit propriété spécifie le seuil pour les conditions de haute pression. À mesure que ce seuil approche, le système de cache commence progressivement à prendre des mesures de repérage plus agressives.

S’applique à

Voir aussi