CacheSection.DisableMemoryCollection 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否已禁用缓存内存收集。
public:
property bool DisableMemoryCollection { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("disableMemoryCollection", DefaultValue=false)]
public bool DisableMemoryCollection { get; set; }
[<System.Configuration.ConfigurationProperty("disableMemoryCollection", DefaultValue=false)>]
member this.DisableMemoryCollection : bool with get, set
Public Property DisableMemoryCollection As Boolean
属性值
如果缓存内存收集已禁用,则为 true
;否则为 false
。 默认值为 false
。
- 属性
示例
下面的代码示例说明如何使用 DisableMemoryCollection 属性。
// Enable or disable memory collection.
cacheSection.DisableMemoryCollection =
!cacheSection.DisableMemoryCollection;
' Enable or disable memory collection.
cacheSection.DisableMemoryCollection =
Not cacheSection.DisableMemoryCollection
注解
如果 属性 DisableMemoryCollection 设置为 true
,则对缓存相关 API 的调用将不起作用。
如果 属性 DisableMemoryCollection 设置为 true
,则缓存不会尝试收集未使用的项。 使用此设置时请谨慎,因为禁用内存收集可能会很快导致应用程序的内存不足情况。
此设置对 ASP.NET 内部缓存或输出缓存没有影响。 有关不同类型的缓存的详细信息,请参阅 缓存。