Edit

Share via


SqlCacheDependencySection.Databases Property

Definition

Gets the collection of SqlCacheDependencyDatabase objects stored within the SqlCacheDependencySection.

[System.Configuration.ConfigurationProperty("databases")]
public System.Web.Configuration.SqlCacheDependencyDatabaseCollection Databases { get; }

Property Value

A SqlCacheDependencyDatabaseCollection of SqlCacheDependencyDatabase objects.

Attributes

Examples

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


// Get the current Databases collection.
SqlCacheDependencyDatabaseCollection databasesValue =
    sqlDs.Databases;

Remarks

The Databases property allows you to programmatically access the databases element of the sqlCacheDependency Element for caching (ASP.NET Settings Schema) of the cache section a configuration file.

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