SqlCacheDependencyDatabase 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 ASP.NET 应用程序配置 SQL 缓存依赖项数据库。 此类不能被继承。
public ref class SqlCacheDependencyDatabase sealed : System::Configuration::ConfigurationElement
public sealed class SqlCacheDependencyDatabase : System.Configuration.ConfigurationElement
type SqlCacheDependencyDatabase = class
inherit ConfigurationElement
Public NotInheritable Class SqlCacheDependencyDatabase
Inherits ConfigurationElement
- 继承
示例
下面的代码示例演示如何从现有 Web 应用程序的配置文件获取 SqlCacheDependencyDatabase 对象。
// Get the Web application configuration.
System.Configuration.Configuration webConfig =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
string configPath = "system.web/cache/sqlCacheDependency";
System.Web.Configuration.SqlCacheDependencySection sqlDs =
(System.Web.Configuration.SqlCacheDependencySection)webConfig.GetSection(
configPath);
// Get the databases element at 0 index.
System.Web.Configuration.SqlCacheDependencyDatabase sqlCdd =
sqlDs.Databases[0];
' Get the Web application configuration.
Dim webConfig _
As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration("/aspnetTest")
' Get the section.
Dim configPath As String = _
"system.web/cache/sqlCacheDependency"
Dim sqlDs _
As System.Web.Configuration.SqlCacheDependencySection = _
CType(webConfig.GetSection(configPath), System.Web.Configuration.SqlCacheDependencySection)
' Get the databases element at 0 index.
Dim sqlCdd _
As System.Web.Configuration.SqlCacheDependencyDatabase = _
sqlDs.Databases(0)
注解
SqlCacheDependencyDatabase允许以编程方式访问和修改databases
配置节中的caching
节点元素sqlCacheDependency
。
SQL 缓存依赖项允许缓存的数据与原始源同步。 在配置存储在 ASP.NET 应用程序的缓存中的项与特定 SQL Server 数据库表之间的关系后,类的 SqlCacheDependency 实例会监视表以查找可能的更改。
构造函数
SqlCacheDependencyDatabase(String, String) |
使用传递的参数初始化 SqlCacheDependencyDatabase 类的新实例。 |
SqlCacheDependencyDatabase(String, String, Int32) |
初始化 SqlCacheDependencyDatabase 类的新实例。 |