OutputCacheProfile.SqlDependency 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 SqlDependency 属性。
public:
property System::String ^ SqlDependency { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("sqlDependency")]
public string SqlDependency { get; set; }
[<System.Configuration.ConfigurationProperty("sqlDependency")>]
member this.SqlDependency : string with get, set
Public Property SqlDependency As String
属性值
- 属性
示例
下面的代码示例说明如何使用 SqlDependency 属性。
// Get the current SqlDependency.
String sqlDependencyValue =
outputCacheProfile.SqlDependency;
// Set the SqlDependency.
outputCacheProfile.SqlDependency =
string.Empty;
' Get the current SqlDependency.
Dim sqlDependencyValue As String = _
outputCacheProfile.SqlDependency
' Set the SqlDependency.
outputCacheProfile.SqlDependency = _
String.Empty
注解
定义 SqlDependency Web 应用程序和SQL Server实例之间的关系,从而检测服务器上的数据更改。 确保SqlDependency每当SQL表依赖更改时,输出缓存页都会从缓存中删除。
备注
该 SqlCacheDependency 类监视表,以便在表发生更改时,项将自动从缓存中删除。 此类不能被继承。