CustomErrorCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 문서의 내용
public ref class CustomErrorCollection sealed : System::Configuration::ConfigurationElementCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.CustomError), AddItemName="error", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)]
public sealed class CustomErrorCollection : System.Configuration.ConfigurationElementCollection
[<System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.CustomError), AddItemName="error", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)>]
type CustomErrorCollection = class
inherit ConfigurationElementCollection
Public NotInheritable Class CustomErrorCollection
Inherits ConfigurationElementCollection
상속
특성
예제
이 예제에서는 값을 선언적으로 지정 하는 방법에 설명 합니다 error
요소의 customErrors
섹션의 요소에 액세스할 수도 있습니다는 CustomErrorCollection 컬렉션.
다음 구성 파일 예제에서는 값을 선언적으로 지정 하는 방법을 보여 줍니다는 error
요소입니다.
<customErrors mode="RemoteOnly"
defaultRedirect="customerror.htm">
<error statusCode="404" redirect="customerror404.htm"/>
</customErrors>
다음 코드 예제를 사용 하는 방법에 설명 합니다 CustomErrorCollection 클래스입니다.
// Get the Web application configuration.
System.Configuration.Configuration configuration =
WebConfigurationManager.OpenWebConfiguration(
"/aspnetTest");
// Get the section.
CustomErrorsSection customErrorsSection =
(CustomErrorsSection)configuration.GetSection(
"system.web/customErrors");
// Get the collection
CustomErrorCollection customErrorsCollection =
customErrorsSection.Errors;
' Get the Web application configuration.
Dim configuration _
As System.Configuration.Configuration = _
WebConfigurationManager.OpenWebConfiguration( _
"/aspnetTest")
' Get the section.
Dim customErrorsSection _
As CustomErrorsSection = _
CType(configuration.GetSection( _
"system.web/customErrors"), _
CustomErrorsSection)
' Get the collection
Dim customErrorsCollection _
As CustomErrorCollection = customErrorsSection.Errors
CustomErrorCollection 형식에 대 한 액세스를 허용 합니다 error
요소의 customErrors
섹션 요소 컬렉션입니다.
포함 된 그룹에 속하기 합니다 CustomError , CustomErrorsMode , 및 CustomErrorsSection 합니다.
생성자
속성
메서드
Add(CustomError)
컬렉션에 CustomError 개체를 추가합니다.
BaseAdd(ConfigurationElement)
구성 요소를 ConfigurationElementCollection 에 추가합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseAdd(ConfigurationElement, Boolean)
구성 요소를 구성 요소 컬렉션에 추가합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseAdd(Int32, ConfigurationElement)
구성 요소를 구성 요소 컬렉션에 추가합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseClear()
컬렉션에서 구성 요소 개체를 모두 제거합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseGet(Int32)
지정된 인덱스 위치에 있는 구성 요소를 가져옵니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseGet(Object)
지정된 키가 있는 구성 요소를 반환합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseGetAllKeys()
ConfigurationElementCollection 에 포함된 모든 구성 요소의 키 배열을 반환합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseGetKey(Int32)
지정된 인덱스 위치에 있는 ConfigurationElement 의 키를 가져옵니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseIndexOf(ConfigurationElement)
지정된 ConfigurationElement 의 인덱스를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseIsRemoved(Object)
지정된 키가 있는 ConfigurationElement 가 ConfigurationElementCollection 에서 제거되었는지 여부를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseRemove(Object)
컬렉션에서 ConfigurationElement 를 제거합니다.
(다음에서 상속됨 ConfigurationElementCollection )
BaseRemoveAt(Int32)
지정된 인덱스 위치에서 ConfigurationElement 를 제거합니다.
(다음에서 상속됨 ConfigurationElementCollection )
Clear()
컬렉션에서 모든 CustomError 개체를 제거합니다.
CopyTo(ConfigurationElement[], Int32)
ConfigurationElementCollection 의 내용을 배열에 복사합니다.
(다음에서 상속됨 ConfigurationElementCollection )
CreateNewElement()
파생 클래스에서 재정의할 때 새 ConfigurationElement 를 만듭니다.
(다음에서 상속됨 ConfigurationElementCollection )
CreateNewElement(String)
파생 클래스에서 재정의될 때 새 ConfigurationElement 를 만듭니다.
(다음에서 상속됨 ConfigurationElementCollection )
DeserializeElement(XmlReader, Boolean)
구성 파일에서 XML을 읽습니다.
(다음에서 상속됨 ConfigurationElement )
Equals(Object)
ConfigurationElementCollection 을 지정된 개체와 비교합니다.
(다음에서 상속됨 ConfigurationElementCollection )
Get(Int32)
지정된 인덱스에 있는 CustomError 개체를 가져옵니다.
Get(String)
지정된 상태 코드를 가진 CustomError 개체를 가져옵니다.
GetElementKey(ConfigurationElement)
파생 클래스에서 재정의될 때 지정된 구성 요소의 요소 키를 가져옵니다.
(다음에서 상속됨 ConfigurationElementCollection )
GetEnumerator()
IEnumerator 을 반복하는 데 사용되는 ConfigurationElementCollection 를 가져옵니다.
(다음에서 상속됨 ConfigurationElementCollection )
GetHashCode()
ConfigurationElementCollection 인스턴스를 나타내는 고유 값을 가져옵니다.
(다음에서 상속됨 ConfigurationElementCollection )
GetKey(Int32)
지정된 인덱스에 있는 CustomErrorCollection 키를 가져옵니다.
GetTransformedAssemblyString(String)
지정된 어셈블리 이름의 변환된 버전을 반환합니다.
(다음에서 상속됨 ConfigurationElement )
GetTransformedTypeString(String)
지정된 형식 이름의 변환된 버전을 반환합니다.
(다음에서 상속됨 ConfigurationElement )
GetType()
현재 인스턴스의 Type 을 가져옵니다.
(다음에서 상속됨 Object )
Init()
ConfigurationElement 개체를 초기 상태로 설정합니다.
(다음에서 상속됨 ConfigurationElement )
InitializeDefault()
ConfigurationElement 개체 값의 기본 집합을 초기화하는 데 사용됩니다.
(다음에서 상속됨 ConfigurationElement )
IsElementName(String)
지정된 ConfigurationElement 가 ConfigurationElementCollection 에 있는지 여부를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
IsElementRemovable(ConfigurationElement)
지정한 ConfigurationElement 를 ConfigurationElementCollection 에서 제거할 수 있는지 여부를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
IsModified()
파생 클래스에서 재정의될 때 이 ConfigurationElementCollection 이 마지막으로 저장되거나 로드된 후 수정되었는지 여부를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
IsReadOnly()
ConfigurationElementCollection 개체가 읽기 전용인지 여부를 나타냅니다.
(다음에서 상속됨 ConfigurationElementCollection )
ListErrors(IList)
이 ConfigurationElement 개체와 모든 하위 요소의 잘못된 속성 오류를 전달된 목록에 추가합니다.
(다음에서 상속됨 ConfigurationElement )
MemberwiseClone()
현재 Object 의 단순 복사본을 만듭니다.
(다음에서 상속됨 Object )
OnDeserializeUnrecognizedAttribute(String, String)
역직렬화하는 동안 알 수 없는 특성을 발견했는지 여부를 나타내는 값을 가져옵니다.
(다음에서 상속됨 ConfigurationElement )
OnDeserializeUnrecognizedElement(String, XmlReader)
구성 시스템에서 예외를 throw하도록 합니다.
(다음에서 상속됨 ConfigurationElementCollection )
OnRequiredPropertyNotFound(String)
필수 속성이 없으면 예외를 throw합니다.
(다음에서 상속됨 ConfigurationElement )
PostDeserialize()
deserialization 후에 호출됩니다.
(다음에서 상속됨 ConfigurationElement )
PreSerialize(XmlWriter)
serialization 전에 호출됩니다.
(다음에서 상속됨 ConfigurationElement )
Remove(String)
컬렉션에서 CustomError 개체를 제거합니다.
RemoveAt(Int32)
컬렉션에서 지정된 인덱스 위치에 있는 CustomError 개체를 제거합니다.
Reset(ConfigurationElement)
파생 클래스에서 재정의될 때 ConfigurationElementCollection 을 수정되지 않은 상태로 다시 설정합니다.
(다음에서 상속됨 ConfigurationElementCollection )
ResetModified()
파생 클래스에서 재정의될 때 IsModified() 속성의 값을 false
로 다시 설정합니다.
(다음에서 상속됨 ConfigurationElementCollection )
SerializeElement(XmlWriter, Boolean)
파생 클래스에서 재정의될 때 구성 파일의 XML 요소에 구성 데이터를 씁니다.
(다음에서 상속됨 ConfigurationElementCollection )
SerializeToXmlElement(XmlWriter, String)
파생 클래스에서 구현될 때 구성 요소의 외부 태그를 구성 파일에 씁니다.
(다음에서 상속됨 ConfigurationElement )
Set(CustomError)
지정된 CustomError 를 컬렉션에 추가합니다.
SetPropertyValue(ConfigurationProperty, Object, Boolean)
속성을 지정된 값으로 설정합니다.
(다음에서 상속됨 ConfigurationElement )
SetReadOnly()
IsReadOnly() 개체와 모든 하위 요소에 대해 ConfigurationElementCollection 속성을 설정합니다.
(다음에서 상속됨 ConfigurationElementCollection )
ToString()
현재 개체를 나타내는 문자열을 반환합니다.
(다음에서 상속됨 Object )
Unmerge(ConfigurationElement, ConfigurationElement, ConfigurationSaveMode)
구성 계층 구조의 여러 수준에서 구성 정보를 병합한 결과를 되돌립니다.
(다음에서 상속됨 ConfigurationElementCollection )
명시적 인터페이스 구현
확장 메서드
적용 대상
추가 정보