SqlCacheDependencyDatabaseCollection.Add(SqlCacheDependencyDatabase) Method
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.
Adds a SqlCacheDependencyDatabase object to the collection.
public:
void Add(System::Web::Configuration::SqlCacheDependencyDatabase ^ name);
public void Add(System.Web.Configuration.SqlCacheDependencyDatabase name);
member this.Add : System.Web.Configuration.SqlCacheDependencyDatabase -> unit
Public Sub Add (name As SqlCacheDependencyDatabase)
The name of the SqlCacheDependencyDatabase object to add to the collection.
The SqlCacheDependencyDatabase object already exists in the collection or the collection is read only.
The following code example shows how to use the Add method.
SqlCacheDependencyDatabase dbElement =
new SqlCacheDependencyDatabase(
"dataBase", "dataBaseElement", 500);
sqlCdds.Add(dbElement);
Dim dbElement As SqlCacheDependencyDatabase = _
New SqlCacheDependencyDatabase( _
"dataBase", "dataBaseElement", 500)
sqlCdds.Add(dbElement)
Each SqlCacheDependencyDatabase in the collection must have a unique name.
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 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: