CacheSection.PrivateBytesLimit 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定一個表示工作過程私有空間最大大小的值。
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 性質規定了高壓條件的臨界值。 當接近這個門檻時,快取系統會逐漸開始採取更積極的清掃措施。