共用方式為


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 層級上覆寫。

適用於

另請參閱