OutputCacheProfile.SqlDependency 属性

定义

获取或设置 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

属性值

String

SqlDependency 值。

属性

示例

下面的代码示例说明如何使用 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 类监视表,以便在表发生更改时,项将自动从缓存中删除。 此类不能被继承。

适用于

另请参阅