共用方式為


SqlCacheDependencySection.Enabled 屬性

定義

取得或設定值,指出是否該監視資料庫資料表的變更。

public:
 property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

屬性值

Boolean

如果啟用 SQL 快取監視,則為 true,否則為 false。 預設為 true

屬性

範例

下列程式碼範例示範如何使用 Enabled 屬性。


// Get the current Enabled property value.
Boolean enabledValue = sqlDs.Enabled;

// Set the Enabled property to false.
sqlDs.Enabled = false;
' Get the current Enabled property value.
Dim enabledValue As [Boolean] = sqlDs.Enabled

' Set the Enabled property to false.
  sqlDs.Enabled = False

備註

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

若要讓這個類別正確運作,資料庫和您想要設定相依性的任何資料表都必須啟用通知。 如需詳細資訊,請參閱為 SqlCacheDependency 類別提供的備註。

注意

取得或設定值,指出是否應該監視具有作用 SqlCacheDependency 中物件的資料庫資料表是否有變更。 此設定不會影響資料列層級 SqlCacheDependency 物件。

適用於

另請參閱