共用方式為


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 性質規定了高壓條件的臨界值。 當接近這個門檻時,快取系統會逐漸開始採取更積極的清掃措施。

適用於

另請參閱