SqlCacheDependencyDatabase.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
屬性值
資料庫輪詢時間,以毫秒為單位。
- 屬性
範例
下列程式碼範例示範如何使用 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
add
組態檔中節點元素 databases
的屬性。
設定儲存在 ASP.NET 應用程式快取中專案與特定SQL Server資料庫資料表之間的關聯性之後,類別的 SqlCacheDependency 實例會監視資料表,以便在資料表中的專案變更時,專案會自動更新或從快取中移除。 監視會以 所 PollTime 指定的頻率進行。