SqlCacheDependencyDatabase.PollTime Property

Definition

Gets or sets the frequency with which the SqlCacheDependency polls the database table for changes.

C#
[System.Configuration.ConfigurationProperty("pollTime", DefaultValue=60000)]
public int PollTime { get; set; }

Property Value

The database polling time, in milliseconds.

Attributes

Examples

The following code example shows how to use the PollTime property.

C#

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

// Set the PollTime property to 1000 milliseconds.
sqlCdd.PollTime = 1000;

Remarks

The PollTime property allows you to programmatically access and modify the pollTime attribute of an add element of the databases node in a configuration file.

After you configure the relationship between an item stored in an ASP.NET application's cache and a specific SQL Server database table, an instance of the SqlCacheDependency class monitors the table so that when an item in the table changes, the item is automatically updated in or removed from the cache. The monitoring happens at the frequency specified by the PollTime.

Applies to

Tuote Versiot
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also