SqlCacheDependencyDatabaseCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SqlCacheDependencyDatabase オブジェクトのコレクションを表します。 このクラスは継承できません。
public ref class SqlCacheDependencyDatabaseCollection sealed : System::Configuration::ConfigurationElementCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.SqlCacheDependencyDatabase))]
public sealed class SqlCacheDependencyDatabaseCollection : System.Configuration.ConfigurationElementCollection
[<System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.SqlCacheDependencyDatabase))>]
type SqlCacheDependencyDatabaseCollection = class
inherit ConfigurationElementCollection
Public NotInheritable Class SqlCacheDependencyDatabaseCollection
Inherits ConfigurationElementCollection
- 継承
- 属性
例
次のコード例は、構成ファイルの SqlCacheDependencyDatabaseCollection セクションにアクセスしてオブジェクトを sqlCacheDependency
取得する方法を示しています。
// Get the Web application configuration.
Configuration webConfig =
WebConfigurationManager.OpenWebConfiguration("/aspnetTest");
// Get the section.
string configPath = "system.web/cache/sqlCacheDependency";
SqlCacheDependencySection sqlCacheDependencySection =
(SqlCacheDependencySection)webConfig.GetSection(configPath);
// Get the database element at the specified index.
SqlCacheDependencyDatabaseCollection sqlCdds =
sqlCacheDependencySection.Databases;
' Get the Web application configuration.
Dim webConfig As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration("/aspnetTest")
' Get the section.
Dim configPath As String = "system.web/sqlCacheDependency"
Dim sqlCacheDependencySection As SqlCacheDependencySection = _
CType(webConfig.GetSection(configPath), SqlCacheDependencySection)
' Get the database element at the specified index.
Dim sqlCdds _
As SqlCacheDependencyDatabaseCollection = _
sqlCacheDependencySection.Databases
注釈
ではSqlCacheDependencySection、 をSqlCacheDependencyDatabaseCollection使用して、構成セクションの のsqlCacheDependency
要素にdatabases
プログラムでcache
アクセスおよび変更します。
コンストラクター
SqlCacheDependencyDatabaseCollection() |
SqlCacheDependencyDatabaseCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
メソッド
明示的なインターフェイスの実装
ICollection.CopyTo(Array, Int32) |
ConfigurationElementCollection を配列にコピーします。 (継承元 ConfigurationElementCollection) |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET