Condividi tramite


CacheSection.PrivateBytesLimit Proprietà

Definizione

Ottiene o imposta un valore che indica la dimensione massima dello spazio privato del processo di lavoro.

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

Valore della proprietà

Dimensione massima in byte dello spazio privato allocato per il processo di lavoro. Il valore predefinito è 0.

Attributi

Esempio

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

Commenti

La PrivateBytesLimit proprietà specifica la soglia per condizioni di pressione elevata. Poiché questa soglia viene avvicinata, il sistema della cache inizia gradualmente misure di scavenging più aggressive.

Si applica a

Vedi anche