XmlNodeReader 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XmlNode의 XML 데이터에 대한 빠르고 캐시되지 않은 전방 액세스만 제공하는 판독기를 나타냅니다.
public ref class XmlNodeReader : System::Xml::XmlReader, System::Xml::IXmlNamespaceResolver
public ref class XmlNodeReader : System::Xml::XmlReader
public class XmlNodeReader : System.Xml.XmlReader, System.Xml.IXmlNamespaceResolver
public class XmlNodeReader : System.Xml.XmlReader
type XmlNodeReader = class
inherit XmlReader
interface IXmlNamespaceResolver
type XmlNodeReader = class
inherit XmlReader
Public Class XmlNodeReader
Inherits XmlReader
Implements IXmlNamespaceResolver
Public Class XmlNodeReader
Inherits XmlReader
- 상속
- 구현
예제
다음 예제에서는 XML 파일이 XML 문서에 로드되고 수정됩니다. XML 문서는 에 XmlNodeReader전달된 다음 메서드에 XmlReader.Create 전달됩니다. 유효성 검사 판독기가 파일을 구문 분석할 때 XML 파일에 대한 변경 내용의 유효성을 검사할 수 있습니다.
using System;
using System.Xml;
using System.Xml.Schema;
using System.IO;
public class Sample {
public static void Main() {
// Create and load the XML document.
XmlDocument doc = new XmlDocument();
doc.Load("booksSchema.xml");
// Make changes to the document.
XmlElement book = (XmlElement) doc.DocumentElement.FirstChild;
book.SetAttribute("publisher", "Worldwide Publishing");
// Create an XmlNodeReader using the XML document.
XmlNodeReader nodeReader = new XmlNodeReader(doc);
// Set the validation settings on the XmlReaderSettings object.
XmlReaderSettings settings = new XmlReaderSettings();
settings.ValidationType = ValidationType.Schema;
settings.Schemas.Add("urn:bookstore-schema", "books.xsd");
settings.ValidationEventHandler += new ValidationEventHandler (ValidationCallBack);
// Create a validating reader that wraps the XmlNodeReader object.
XmlReader reader = XmlReader.Create(nodeReader, settings);
// Parse the XML file.
while (reader.Read());
}
// Display any validation errors.
private static void ValidationCallBack(object sender, ValidationEventArgs e) {
Console.WriteLine("Validation Error: {0}", e.Message);
}
}
Imports System.Xml
Imports System.Xml.Schema
Imports System.IO
public class Sample
public shared sub Main()
' Create and load the XML document.
Dim doc as XmlDocument = new XmlDocument()
doc.Load("booksSchema.xml")
' Make changes to the document.
Dim book as XmlElement
book = CType(doc.DocumentElement.FirstChild, XmlElement)
book.SetAttribute("publisher", "Worldwide Publishing")
' Create an XmlNodeReader using the XML document.
Dim nodeReader as XmlNodeReader = new XmlNodeReader(doc)
' Set the validation settings on the XmlReaderSettings object.
Dim settings as XmlReaderSettings = new XmlReaderSettings()
settings.ValidationType = ValidationType.Schema
settings.Schemas.Add("urn:bookstore-schema", "books.xsd")
AddHandler settings.ValidationEventHandler, AddressOf ValidationCallBack
' Create a validating reader that wraps the XmlNodeReader object.
Dim reader as XmlReader = XmlReader.Create(nodeReader,settings)
' Parse the XML file.
while (reader.Read())
end while
end sub
' Display any validation errors.
private shared sub ValidationCallBack(sender as object, e as ValidationEventArgs)
Console.WriteLine("Validation Error: {0}", e.Message)
end sub
end class
다음 두 개의 XML 파일이 입력으로 사용됩니다.
<?xml version='1.0'?>
<bookstore xmlns="urn:bookstore-schema">
<book genre="autobiography">
<title>The Autobiography of Benjamin Franklin</title>
<author>
<first-name>Benjamin</first-name>
<last-name>Franklin</last-name>
</author>
<price>8.99</price>
</book>
<book genre="novel">
<title>The Confidence Man</title>
<author>
<first-name>Herman</first-name>
<last-name>Melville</last-name>
</author>
<price>11.99</price>
</book>
</bookstore>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="urn:bookstore-schema"
elementFormDefault="qualified"
targetNamespace="urn:bookstore-schema">
<xsd:element name="bookstore" type="bookstoreType"/>
<xsd:complexType name="bookstoreType">
<xsd:sequence maxOccurs="unbounded">
<xsd:element name="book" type="bookType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="bookType">
<xsd:sequence>
<xsd:element name="title" type="xsd:string"/>
<xsd:element name="author" type="authorName"/>
<xsd:element name="price" type="xsd:decimal"/>
</xsd:sequence>
<xsd:attribute name="genre" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="authorName">
<xsd:sequence>
<xsd:element name="first-name" type="xsd:string"/>
<xsd:element name="last-name" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
출력:
유효성 검사 오류: 'publisher' 특성이 선언되지 않았습니다.
설명
참고
를 사용하는 XmlNodeReader대신 클래스와 Create 메서드를 사용하여 인스턴스를 XmlReaderSettings 만드는 XmlReader 것이 좋습니다. 이렇게 하면 XML 1.0 권장 사항에 대한 규칙 검사 및 규정 준수를 활용할 수 있습니다.
는 XmlNodeReader
XML DOM 하위 트리를 읽을 수 있습니다. 이 클래스는 DTD(문서 형식 정의) 또는 스키마 유효성 검사를 지원하지 않습니다. 그러나 예제 섹션과 같이 개체를 래 XmlNodeReader 핑하여 개체에 저장된 데이터의 유효성을 XmlNodeReader 검사하는 개체를 만들 XmlReader 수 있습니다.
생성자
XmlNodeReader(XmlNode) |
지정된 XmlNode를 사용하여 |
속성
AttributeCount |
현재 노드의 특성 수를 가져옵니다. |
BaseURI |
현재 노드의 기본 URI를 가져옵니다. |
CanReadBinaryContent |
XmlNodeReader가 이진 콘텐츠 읽기 메서드를 구현하는지를 나타내는 값을 가져옵니다. |
CanReadBinaryContent |
XmlReader가 이진 콘텐츠 읽기 메서드를 구현하는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 XmlReader) |
CanReadValueChunk |
XmlReader가 ReadValueChunk(Char[], Int32, Int32) 메서드를 구현하는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 XmlReader) |
CanResolveEntity |
이 판독기가 엔터티를 구문 분석하고 확인할 수 있는지를 나타내는 값을 가져옵니다. |
Depth |
XML 문서에서 현재 노드의 수준을 가져옵니다. |
EOF |
판독기가 스트림의 맨 끝에 있는지를 나타내는 값을 가져옵니다. |
HasAttributes |
현재 노드에 특성이 있는지를 나타내는 값을 얻습니다. |
HasValue |
현재 노드에 Value가 있는지 여부를 나타내는 값을 가져옵니다. |
IsDefault |
현재 노드가 DTD(문서 종류 정의) 또는 스키마에서 정의한 기본값에서 생성된 특성인지를 나타내는 값을 가져옵니다. |
IsEmptyElement |
현재 노드가 빈 요소인지 여부를 나타내는 값을 가져옵니다(예: |
Item[Int32] |
지정된 인덱스가 있는 특성의 값을 가져옵니다. |
Item[Int32] |
파생 클래스에서 재정의되면 지정된 인덱스가 있는 특성의 값을 가져옵니다. (다음에서 상속됨 XmlReader) |
Item[String, String] |
지정된 로컬 이름과 네임스페이스 URI가 있는 특성의 값을 가져옵니다. |
Item[String, String] |
파생 클래스에서 재정의되면 지정된 LocalName 및 NamespaceURI가 있는 특성의 값을 가져옵니다. (다음에서 상속됨 XmlReader) |
Item[String] |
파생 클래스에서 재정의되면 지정된 이름이 있는 특성의 값을 가져옵니다. |
Item[String] |
파생 클래스에서 재정의되면 지정된 Name이 있는 특성의 값을 가져옵니다. (다음에서 상속됨 XmlReader) |
LocalName |
현재 노드의 로컬 이름을 가져옵니다. |
Name |
현재 노드의 정규화된 이름을 가져옵니다. |
NamespaceURI |
W3C 네임스페이스 사양에서 정의된 것처럼 판독기가 있는 노드의 네임스페이스 URI를 가져옵니다. |
NameTable |
이 구현과 관련된 XmlNameTable을 가져옵니다. |
NodeType |
현재 노드의 형식을 가져옵니다. |
Prefix |
현재 노드와 관련된 네임스페이스 접두사를 가져옵니다. |
QuoteChar |
특성 노드의 값을 묶을 때 사용하는 인용 부호 문자를 가져옵니다. |
QuoteChar |
파생 클래스에서 재정의되면 Attribute 노드의 값을 묶는 데 사용되는 따옴표 문자를 가져옵니다. (다음에서 상속됨 XmlReader) |
ReadState |
판독기의 상태를 가져옵니다. |
SchemaInfo |
현재 노드에 할당된 스키마 정보를 가져옵니다. |
SchemaInfo |
스키마 유효성 검사의 결과로 현재 노드에 할당된 스키마 정보를 가져옵니다. (다음에서 상속됨 XmlReader) |
Settings |
이 XmlReader 인스턴스를 만드는 데 사용되는 XmlReaderSettings 개체를 가져옵니다. (다음에서 상속됨 XmlReader) |
Value |
현재 노드의 텍스트 값을 가져옵니다. |
ValueType |
현재 노드의 CLR(공용 언어 런타임) 형식을 가져옵니다. (다음에서 상속됨 XmlReader) |
XmlLang |
현재 |
XmlSpace |
현재 |
메서드
Close() |
ReadState를 |
Dispose() |
XmlReader 클래스의 현재 인스턴스에서 사용하는 모든 리소스를 해제합니다. (다음에서 상속됨 XmlReader) |
Dispose(Boolean) |
XmlReader에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다. (다음에서 상속됨 XmlReader) |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetAttribute(Int32) |
지정된 인덱스가 있는 특성의 값을 가져옵니다. |
GetAttribute(String) |
지정된 이름이 있는 특성의 값을 가져옵니다. |
GetAttribute(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 있는 특성의 값을 가져옵니다. |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
GetValueAsync() |
현재 노드의 값을 비동기적으로 가져옵니다. (다음에서 상속됨 XmlReader) |
IsStartElement() |
MoveToContent()를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 테스트합니다. (다음에서 상속됨 XmlReader) |
IsStartElement(String) |
MoveToContent()를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 Name 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. (다음에서 상속됨 XmlReader) |
IsStartElement(String, String) |
MoveToContent()를 호출하고 현재 콘텐츠 노드가 시작 태그 또는 빈 요소 태그인지 여부와 찾은 요소의 LocalName 및 NamespaceURI 속성이 지정된 인수와 일치하는지 여부를 테스트합니다. (다음에서 상속됨 XmlReader) |
LookupNamespace(String) |
현재 요소의 범위에서 네임스페이스 접두사를 확인합니다. |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
MoveToAttribute(Int32) |
지정된 인덱스가 있는 특성으로 이동합니다. |
MoveToAttribute(String) |
지정된 이름이 있는 특성으로 이동합니다. |
MoveToAttribute(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 있는 특성으로 이동합니다. |
MoveToContent() |
현재 노드가 콘텐츠 노드(공백 없는 텍스트, |
MoveToContentAsync() |
현재 노드가 콘텐츠 노드인지를 비동기적으로 확인합니다. 해당 노드가 콘텐츠 노드가 아니면 판독기는 다음 콘텐츠 노드나 파일의 끝으로 건너뜁니다. (다음에서 상속됨 XmlReader) |
MoveToElement() |
현재 특성 노드가 포함된 요소로 이동합니다. |
MoveToFirstAttribute() |
첫 번째 특성으로 이동합니다. |
MoveToNextAttribute() |
다음 특성으로 이동합니다. |
Read() |
스트림에서 다음 노드를 읽습니다. |
ReadAsync() |
스트림에서 다음 노드를 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadAttributeValue() |
특성 값을 하나 이상의 |
ReadContentAs(Type, IXmlNamespaceResolver) |
지정한 형식의 개체로 콘텐츠를 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsAsync(Type, IXmlNamespaceResolver) |
지정한 형식의 개체로 콘텐츠를 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsBase64(Byte[], Int32, Int32) |
콘텐츠를 읽고 Base64 디코딩된 이진 바이트를 반환합니다. |
ReadContentAsBase64(Byte[], Int32, Int32) |
콘텐츠를 읽고 Base64 디코딩된 이진 바이트를 반환합니다. (다음에서 상속됨 XmlReader) |
ReadContentAsBase64Async(Byte[], Int32, Int32) |
콘텐츠를 비동기적으로 읽고 Base64 디코딩된 이진 바이트를 반환합니다. (다음에서 상속됨 XmlReader) |
ReadContentAsBinHex(Byte[], Int32, Int32) |
내용을 읽고 BinHex 디코딩된 이진 바이트를 반환합니다. |
ReadContentAsBinHex(Byte[], Int32, Int32) |
콘텐츠를 읽고 |
ReadContentAsBinHexAsync(Byte[], Int32, Int32) |
콘텐츠를 비동기적으로 읽고 |
ReadContentAsBoolean() |
현재 위치의 텍스트 콘텐츠를 |
ReadContentAsDateTime() |
현재 위치의 텍스트 콘텐츠를 DateTime 개체로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsDateTimeOffset() |
현재 위치의 텍스트 콘텐츠를 DateTimeOffset 개체로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsDecimal() |
현재 위치의 텍스트 콘텐츠를 Decimal 개체로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsDouble() |
현재 위치의 텍스트 콘텐츠를 배정밀도 부동 소수점 숫자로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsFloat() |
현재 위치의 텍스트 콘텐츠를 단정밀도 부동 소수점 숫자로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsInt() |
현재 위치의 텍스트 콘텐츠를 부호 있는 32비트 정수로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsLong() |
현재 위치의 텍스트 콘텐츠를 부호 있는 64비트 정수로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsObject() |
현재 위치의 텍스트 콘텐츠를 Object로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsObjectAsync() |
현재 위치의 텍스트 콘텐츠를 Object로 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsString() |
현재 위치의 텍스트 콘텐츠를 String 개체로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadContentAsStringAsync() |
현재 위치의 텍스트 콘텐츠를 String 개체로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAs(Type, IXmlNamespaceResolver) |
요소 콘텐츠를 요청된 형식으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAs(Type, IXmlNamespaceResolver, String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 요소 콘텐츠를 요청된 형식으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsAsync(Type, IXmlNamespaceResolver) |
요소 콘텐츠를 요청된 형식으로 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsBase64(Byte[], Int32, Int32) |
요소를 읽고 Base64 콘텐츠를 디코딩합니다. |
ReadElementContentAsBase64(Byte[], Int32, Int32) |
요소를 읽고 |
ReadElementContentAsBase64Async(Byte[], Int32, Int32) |
요소를 비동기적으로 읽고 |
ReadElementContentAsBinHex(Byte[], Int32, Int32) |
요소를 읽고 BinHex 콘텐츠를 디코딩합니다. |
ReadElementContentAsBinHex(Byte[], Int32, Int32) |
요소를 읽고 |
ReadElementContentAsBinHexAsync(Byte[], Int32, Int32) |
요소를 비동기적으로 읽고 |
ReadElementContentAsBoolean() |
현재 요소를 읽고 콘텐츠를 Boolean 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsBoolean(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 Boolean 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDateTime() |
현재 요소를 읽고 콘텐츠를 DateTime 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDateTime(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 DateTime 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDecimal() |
현재 요소를 읽고 콘텐츠를 Decimal 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDecimal(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 Decimal 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDouble() |
현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsDouble(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 배정밀도 부동 소수점 숫자로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsFloat() |
현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsFloat(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 단정밀도 부동 소수점 숫자로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsInt() |
현재 요소를 읽고 부호 있는 32비트 정수로 콘텐츠를 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsInt(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 부호 있는 32비트 정수로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsLong() |
현재 요소를 읽고 부호 있는 64비트 정수로 콘텐츠를 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsLong(String, String) |
지정된 로컬 이름 및 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음, 현재 요소를 읽고 콘텐츠를 부호 있는 64비트 정수로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsObject() |
현재 요소를 읽고 콘텐츠를 Object로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsObject(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 Object로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsObjectAsync() |
현재 요소를 비동기적으로 읽고 콘텐츠를 Object로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsString() |
현재 요소를 읽고 콘텐츠를 String 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsString(String, String) |
지정된 로컬 이름과 네임스페이스 URI가 현재 요소의 로컬 이름 및 네임스페이스 URI와 일치하는지 확인한 다음 현재 요소를 읽고 콘텐츠를 String 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementContentAsStringAsync() |
현재 요소를 비동기적으로 읽고 콘텐츠를 String 개체로 반환합니다. (다음에서 상속됨 XmlReader) |
ReadElementString() |
텍스트 전용 요소를 읽습니다. 그러나 이 연산을 더 간단하게 처리하는 방법을 제공하는 ReadElementContentAsString() 메서드를 대신 사용하는 것이 좋습니다. (다음에서 상속됨 XmlReader) |
ReadElementString(String) |
텍스트 전용 요소를 읽기 전에 찾은 요소의 Name 속성이 지정된 문자열과 일치하는지 확인합니다. 그러나 이 연산을 더 간단하게 처리하는 방법을 제공하는 ReadElementContentAsString() 메서드를 대신 사용하는 것이 좋습니다. (다음에서 상속됨 XmlReader) |
ReadElementString(String, String) |
텍스트 전용 요소를 읽기 전에 찾은 요소의 LocalName 및 NamespaceURI 속성이 지정된 문자열과 일치하는지 확인합니다. 그러나 이 연산을 더 간단하게 처리하는 방법을 제공하는 ReadElementContentAsString(String, String) 메서드를 대신 사용하는 것이 좋습니다. (다음에서 상속됨 XmlReader) |
ReadEndElement() |
현재 콘텐츠 노드가 끝 태그인지 확인하고 판독기를 다음 노드로 이동합니다. (다음에서 상속됨 XmlReader) |
ReadInnerXml() |
파생 클래스에서 재정의되면 태그를 포함한 모든 콘텐츠를 문자열로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadInnerXmlAsync() |
태그를 포함한 모든 콘텐츠를 문자열로 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadOuterXml() |
파생 클래스에서 재정의되면 태그를 포함하여 이 노드 및 모든 자식 노드를 나타내는 콘텐츠를 읽습니다. (다음에서 상속됨 XmlReader) |
ReadOuterXmlAsync() |
이 노드 및 이 노드의 모든 자식을 나타내는 태그를 포함한 콘텐츠를 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ReadStartElement() |
현재 노드가 요소인지 확인하고 판독기를 다음 노드로 이동합니다. (다음에서 상속됨 XmlReader) |
ReadStartElement(String) |
현재 콘텐츠 노드가 지정된 Name을 가진 요소인지 확인하고 판독기를 다음 노드로 이동합니다. (다음에서 상속됨 XmlReader) |
ReadStartElement(String, String) |
현재 콘텐츠 노드가 지정된 LocalName 및 NamespaceURI가 있는 요소인지 확인하고 판독기를 다음 노드로 이동합니다. (다음에서 상속됨 XmlReader) |
ReadString() |
요소 또는 텍스트 노드의 내용을 문자열로 읽습니다. |
ReadSubtree() |
현재 노드와 해당 하위 노드 전체를 읽는 데 사용되는 새 |
ReadToDescendant(String) |
지정된 정규화 이름을 사용하는 다음 하위 요소로 XmlReader를 이동합니다. (다음에서 상속됨 XmlReader) |
ReadToDescendant(String, String) |
지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 하위 요소로 XmlReader를 이동합니다. (다음에서 상속됨 XmlReader) |
ReadToFollowing(String) |
지정된 정규화된 이름의 요소를 찾을 때까지 읽습니다. (다음에서 상속됨 XmlReader) |
ReadToFollowing(String, String) |
지정된 로컬 이름 및 네임스페이스 URI를 사용하는 요소를 찾을 때까지 읽습니다. (다음에서 상속됨 XmlReader) |
ReadToNextSibling(String) |
지정된 정규화 이름을 사용하는 다음 형제 요소로 |
ReadToNextSibling(String, String) |
지정된 로컬 이름과 네임스페이스 URI를 사용하는 다음 형제 요소로 |
ReadValueChunk(Char[], Int32, Int32) |
XML 문서에 포함된 큰 텍스트 스트림을 읽습니다. (다음에서 상속됨 XmlReader) |
ReadValueChunkAsync(Char[], Int32, Int32) |
XML 문서에 포함된 큰 텍스트 스트림을 비동기적으로 읽습니다. (다음에서 상속됨 XmlReader) |
ResolveEntity() |
|
Skip() |
현재 노드의 자식을 건너뜁니다. |
SkipAsync() |
현재 노드의 자식을 비동기적으로 건너뜁니다. (다음에서 상속됨 XmlReader) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
명시적 인터페이스 구현
IDisposable.Dispose() |
이 멤버에 대한 설명은 Dispose()를 참조하세요. (다음에서 상속됨 XmlReader) |
IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope) |
이 멤버에 대한 설명은 GetNamespacesInScope(XmlNamespaceScope)를 참조하세요. |
IXmlNamespaceResolver.LookupNamespace(String) |
이 멤버에 대한 설명은 LookupNamespace(String)를 참조하세요. |
IXmlNamespaceResolver.LookupPrefix(String) |
이 멤버에 대한 설명은 LookupPrefix(String)를 참조하세요. |
적용 대상
.NET