共用方式為


CacheSection.PrivateBytesLimit 屬性

定義

取得或設定值,表示工作處理序最大的私用空間。

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

屬性值

配置到工作處理序的最大私用空間位元組數。 預設值為 0。

屬性

範例

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

備註

屬性 PrivateBytesLimit 會指定高壓力條件的臨界值。 當接近此臨界值時,快取系統會逐漸開始更積極清除量值。

適用於

另請參閱