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 프로그래밍 방식으로 액세스 하 고 수정 하는 databases
요소의 sqlCacheDependency
에서 cache
구성 섹션.
생성자
SqlCacheDependencyDatabaseCollection() |
SqlCacheDependencyDatabaseCollection 클래스의 새 인스턴스를 초기화합니다. |
속성
메서드
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
ConfigurationElementCollection을 배열에 복사합니다. (다음에서 상속됨 ConfigurationElementCollection) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |
적용 대상
추가 정보
.NET