Share via


CacheSection.PrivateBytesLimit Propiedad

Definición

Obtiene o establece un valor que indica el tamaño máximo del espacio privado del proceso de trabajo.

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

Valor de propiedad

Int64

El número máximo, en bytes, del espacio privado asignado al proceso de trabajo. El valor predeterminado es 0.

Atributos

Ejemplos

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

Comentarios

La PrivateBytesLimit propiedad especifica el umbral para condiciones de alta presión. A medida que se aproxima este umbral, el sistema de caché comienza gradualmente medidas de scavenging más agresivas.

Se aplica a

Consulte también