SqlCacheDependencySection.Databases Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the collection of SqlCacheDependencyDatabase objects stored within the SqlCacheDependencySection.
public:
property System::Web::Configuration::SqlCacheDependencyDatabaseCollection ^ Databases { System::Web::Configuration::SqlCacheDependencyDatabaseCollection ^ get(); };
[System.Configuration.ConfigurationProperty("databases")]
public System.Web.Configuration.SqlCacheDependencyDatabaseCollection Databases { get; }
[<System.Configuration.ConfigurationProperty("databases")>]
member this.Databases : System.Web.Configuration.SqlCacheDependencyDatabaseCollection
Public ReadOnly Property Databases As SqlCacheDependencyDatabaseCollection
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;
' Get the current Databases collection.
Dim databasesValue _
As SqlCacheDependencyDatabaseCollection = _
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.