SqlCacheDependencySection.PollTime 属性

定义

获取或设置 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

属性值

Int32

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级别上重写频率。

适用于

另请参阅