OutputCacheProfile.SqlDependency Property

Definition

Gets or sets the SqlDependency property.

C#
[System.Configuration.ConfigurationProperty("sqlDependency")]
public string SqlDependency { get; set; }

Property Value

The SqlDependency value.

Attributes

Examples

The following code example shows how to use the SqlDependency property.

C#

// Get the current SqlDependency.
String sqlDependencyValue = 
    outputCacheProfile.SqlDependency;

// Set the SqlDependency.
outputCacheProfile.SqlDependency = 
    string.Empty;

Remarks

The SqlDependency defines a relationship between a Web application and an instance of SQL Server, allowing the detection of changes in the data at the server. The SqlDependency ensures that output cached pages are removed from the cache whenever the SQL table on which they depend changes.

Note

The SqlCacheDependency class monitors the table so that when the table changes, the item will be automatically removed from the Cache. This class cannot be inherited.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also