SqlCacheDependencyDatabase.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

属性值

数据库轮询时间(以毫秒为单位)。

属性

示例

下面的代码示例说明如何使用 PollTime 属性。


// Get the current PollTime property value.
Int32 pollTimeValue = sqlCdd.PollTime;

// Set the PollTime property to 1000 milliseconds.
sqlCdd.PollTime = 1000;
' Get the current PollTime property value.
Dim pollTimeValue As Int32 = sqlCdd.PollTime

' Set the PollTime property to 1000 milliseconds.
sqlCdd.PollTime = 1000

注解

属性PollTime允许以编程方式访问和修改pollTime配置文件中节点元素的 databases 属性add

在配置存储在 ASP.NET 应用程序缓存中的项与特定SQL Server数据库表之间的关系后,类的SqlCacheDependency实例将监视表,以便在表中的项发生更改时,该项会自动在缓存中更新或从缓存中删除。 监视以 指定的 PollTime频率进行。

适用于

另请参阅