SqlCacheDependencySection.PollTime 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 SqlCacheDependency 轮询数据库表更改情况的频率。
public:
property int PollTime { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("pollTime", DefaultValue=60000)]
public int PollTime { get; set; }
[<System.Configuration.ConfigurationProperty("pollTime", DefaultValue=60000)>]
member this.PollTime : int with get, set
Public Property PollTime As Integer
属性值
SQL 缓存依赖项的轮询时间(以毫秒为单位)。 默认值为 500。
- 属性
示例
下面的代码示例说明如何使用 PollTime 属性。
// Get the current PollTime property value.
Int32 pollTimeValue = sqlDs.PollTime;
// Set the PollTime property to 500 milliseconds.
sqlDs.PollTime = 500;
' Get the current PollTime property value.
Dim pollTimeValue As Int32 = sqlDs.PollTime
' Set the PollTime property to 500 milliseconds.
sqlDs.PollTime = 500
注解
该PollTime属性定义 ASP.NET 轮询数据库以查找链接到缓存项的表更改的时间频率。
注意 可以在配置部分元素sqlCacheDependency``cache
的数据库databases
级别上重写频率。