XmlReaderSettings 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XmlReaderSettings 클래스의 새 인스턴스를 초기화합니다.
오버로드
XmlReaderSettings() |
XmlReaderSettings 클래스의 새 인스턴스를 초기화합니다. |
XmlReaderSettings(XmlResolver) |
사용되지 않음.
XmlReaderSettings 클래스의 새 인스턴스를 초기화합니다. |
XmlReaderSettings()
- Source:
- XmlReaderSettings.cs
- Source:
- XmlReaderSettings.cs
- Source:
- XmlReaderSettings.cs
XmlReaderSettings 클래스의 새 인스턴스를 초기화합니다.
public:
XmlReaderSettings();
public XmlReaderSettings ();
Public Sub New ()
예제
다음은 처리 명령, 주석 및 중요하지 않은 공백을 제거하는 판독기를 생성하는 데 사용할 수 있는 설정 개체를 만듭니다.
// Set the reader settings.
XmlReaderSettings^ settings = gcnew XmlReaderSettings;
settings->IgnoreComments = true;
settings->IgnoreProcessingInstructions = true;
settings->IgnoreWhitespace = true;
// Set the reader settings.
XmlReaderSettings settings = new XmlReaderSettings();
settings.IgnoreComments = true;
settings.IgnoreProcessingInstructions = true;
settings.IgnoreWhitespace = true;
' Set the reader settings.
Dim settings as XmlReaderSettings = new XmlReaderSettings()
settings.IgnoreComments = true
settings.IgnoreProcessingInstructions = true
settings.IgnoreWhitespace = true
설명
다음 표에서는 XmlReaderSettings인스턴스에 대한 초기 속성 값을 보여 줍니다.
재산 | 초기 값 |
---|---|
Async |
false . |
CheckCharacters |
true . |
CloseInput |
false . |
ConformanceLevel | Document. |
DtdProcessing | Prohibit |
IgnoreComments |
false . |
IgnoreProcessingInstructions |
false . |
IgnoreWhitespace |
false . |
LineNumberOffset | 0. |
LinePositionOffset | 0. |
MaxCharactersFromEntities | 0(엔터티 확장으로 인해 발생하는 문자 수에는 제한이 없음). |
MaxCharactersInDocument | 0(XML 문서의 크기에 제한이 없음). |
NameTable |
null . |
ProhibitDtd |
true . 이 속성은 사용되지 않습니다. 대신 DtdProcessing 사용합니다.
ProhibitDtd 기본값으로 설정한 true DtdProcessingProhibit .
ProhibitDtd
false 설정하면 DtdProcessingParse . |
Schemas | 빈 XmlSchemaSet 개체입니다. |
ValidationFlags | ProcessIdentityConstraints. |
ValidationType | None. |
XmlResolver | 새 XmlUrlResolver 개체입니다. |
추가 정보
적용 대상
XmlReaderSettings(XmlResolver)
주의
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
XmlReaderSettings 클래스의 새 인스턴스를 초기화합니다.
public:
XmlReaderSettings(System::Xml::XmlResolver ^ resolver);
[System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
public XmlReaderSettings (System.Xml.XmlResolver resolver);
[<System.Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)>]
new System.Xml.XmlReaderSettings : System.Xml.XmlResolver -> System.Xml.XmlReaderSettings
Public Sub New (resolver As XmlResolver)
매개 변수
- resolver
- XmlResolver
XML 확인자입니다.
- 특성
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET