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 プロパティは、高圧条件のしきい値を指定します。 このしきい値に近づくと、キャッシュ システムは徐々に、より積極的な清掃対策を開始します。

適用対象

こちらもご覧ください