CacheSection.PrivateBytesLimit Propriedade

Definição

Obtém ou define um valor que indica o tamanho máximo do espaço privado do processo de trabalho.

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 Propriedade

O número máximo, em bytes, do espaço privado alocado ao processo de trabalho. O valor padrão é 0.

Atributos

Exemplos

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

Observações

A PrivateBytesLimit propriedade especifica o limiar para condições de alta pressão. À medida que este limiar se aproxima, o sistema de cache começa gradualmente a tomar medidas de limpeza mais agressivas.

Aplica-se a

Ver também