다음 코드 예제에서는 가져오는 방법을 보여 줍니다는 UrlMappingsSection 기존 웹 애플리케이션의 구성 파일에서 개체입니다. 구성 파일의 일부는도 표시 됩니다.
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration(
"/aspnetTest");
// Get the <urlMapping> section.
UrlMappingsSection urlMappingSection =
(UrlMappingsSection)configuration.GetSection(
"system.web/urlMappings");
// Get the url mapping collection.
UrlMappingCollection urlMappings =
urlMappingSection.UrlMappings;
' Get the Web application configuration.
Dim configuration _
As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the <urlMapping> section.
Dim urlMappingSection _
As UrlMappingsSection = _
CType(configuration.GetSection( _
"system.web/urlMappings"), UrlMappingsSection)
' Get the url mapping collection.
Dim urlMappings _
As UrlMappingCollection = _
urlMappingSection.UrlMappings
UrlMappingsSection 클래스를 사용하면 구성 파일의 urlMappings 섹션을 프로그래밍 방식으로 액세스하고 수정할 수 있습니다.
참고
합니다 urlMappings 단원의 UrlMapping 웹 애플리케이션에 존재 하는 Url로 사용자에 게 표시 되는 Url에 매핑되는 개체입니다. 합니다 UrlMappingsSection section 속성으로 정의 된 제한에 따라 구성 파일의 관련된 섹션에 정보를 작성할 수 있습니다 AllowDefinition 값인 MachineToApplication합니다. 계층에서 허용 되지 않습니다 수준에서 구성 파일에 쓰려고 시도 파서에 의해 생성 된 오류 메시지가 발생 합니다. 그러나 계층의 모든 수준에서 구성 정보를 읽을이 클래스를 사용할 수 있습니다.