共用方式為


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 可讓您以程式設計方式存取和修改 pollTimeadd 組態檔中節點元素 databases 的屬性。

設定儲存在 ASP.NET 應用程式快取中專案與特定SQL Server資料庫資料表之間的關聯性之後,類別的 SqlCacheDependency 實例會監視資料表,以便在資料表中的專案變更時,專案會自動更新或從快取中移除。 監視會以 所 PollTime 指定的頻率進行。

適用於

另請參閱