XmlTextReader 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
XmlTextReader의 새 인스턴스를 초기화합니다.
오버로드
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
XmlTextReader()
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
XmlTextReader
의 새 인스턴스를 초기화합니다.
protected:
XmlTextReader();
protected XmlTextReader ();
Protected Sub New ()
추가 정보
적용 대상
XmlTextReader(String, XmlNodeType, XmlParserContext)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 문자열, XmlNodeType, XmlParserContext를 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ xmlFragment, System::Xml::XmlNodeType fragType, System::Xml::XmlParserContext ^ context);
public XmlTextReader (string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext? context);
public XmlTextReader (string xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context);
new System.Xml.XmlTextReader : string * System.Xml.XmlNodeType * System.Xml.XmlParserContext -> System.Xml.XmlTextReader
Public Sub New (xmlFragment As String, fragType As XmlNodeType, context As XmlParserContext)
매개 변수
- xmlFragment
- String
구문 분석할 XML 조각을 포함하는 문자열입니다.
- fragType
- XmlNodeType
XML 조각의 XmlNodeType입니다. 또한 조각 문자열에 포함되는 사항을 결정합니다. 아래 표를 참조하세요.
- context
- XmlParserContext
xmlFragment
가 구문 분석될 XmlParserContext입니다. 여기에는 사용할, 인코딩, 네임스페이스 범위, 현재 및 범위가 포함됩니다 XmlNameTablexml:space
.xml:lang
예외
fragType
은 Element
, Attribute
또는 Document
XmlNodeType
이 아닙니다.
xmlFragment
이(가) null
인 경우
예제
다음 예제에서는 XML 조각을 구문 분석합니다. 및 를 XmlParserContext
사용하여 네임스페이 XmlNamespaceManager 스 확인을 처리합니다.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
// Create the XML fragment to be parsed.
String^ xmlFrag = "<book> <title>Pride And Prejudice</title> <bk:genre>novel</bk:genre> </book>";
// Create the XmlNamespaceManager.
NameTable^ nt = gcnew NameTable;
XmlNamespaceManager^ nsmgr = gcnew XmlNamespaceManager( nt );
nsmgr->AddNamespace( "bk", "urn:sample" );
// Create the XmlParserContext.
XmlParserContext^ context = gcnew XmlParserContext( nullptr,nsmgr,nullptr,XmlSpace::None );
// Create the reader.
XmlTextReader^ reader = gcnew XmlTextReader( xmlFrag,XmlNodeType::Element,context );
// Parse the XML. If they exist, display the prefix and
// namespace URI of each element.
while ( reader->Read() )
{
if ( reader->IsStartElement() )
{
if ( reader->Prefix == String::Empty )
Console::WriteLine( "< {0}>", reader->LocalName );
else
{
Console::Write( "< {0}: {1}>", reader->Prefix, reader->LocalName );
Console::WriteLine( " The namespace URI is {0}", reader->NamespaceURI );
}
}
}
// Close the reader.
reader->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
//Create the XML fragment to be parsed.
string xmlFrag ="<book> " +
"<title>Pride And Prejudice</title>" +
"<bk:genre>novel</bk:genre>" +
"</book>";
//Create the XmlNamespaceManager.
NameTable nt = new NameTable();
XmlNamespaceManager nsmgr = new XmlNamespaceManager(nt);
nsmgr.AddNamespace("bk", "urn:sample");
//Create the XmlParserContext.
XmlParserContext context = new XmlParserContext(null, nsmgr, null, XmlSpace.None);
//Create the reader.
XmlTextReader reader = new XmlTextReader(xmlFrag, XmlNodeType.Element, context);
//Parse the XML. If they exist, display the prefix and
//namespace URI of each element.
while (reader.Read()){
if (reader.IsStartElement()){
if (reader.Prefix==String.Empty)
{
Console.WriteLine("<{0}>", reader.LocalName);
}
else
{
Console.Write("<{0}:{1}>", reader.Prefix, reader.LocalName);
Console.WriteLine(" The namespace URI is " + reader.NamespaceURI);
}
}
}
//Close the reader.
reader.Close();
}
} // End class
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
'Create the XML fragment to be parsed.
Dim xmlFrag as string ="<book> " & _
"<title>Pride And Prejudice</title>" & _
"<bk:genre>novel</bk:genre>" & _
"</book>"
'Create the XmlNamespaceManager.
Dim nt as NameTable = new NameTable()
Dim nsmgr as XmlNamespaceManager = new XmlNamespaceManager(nt)
nsmgr.AddNamespace("bk", "urn:sample")
'Create the XmlParserContext.
Dim context as XmlParserContext = new XmlParserContext(nothing, nsmgr, nothing, XmlSpace.None)
'Create the reader.
Dim reader as XmlTextReader = new XmlTextReader(xmlFrag, XmlNodeType.Element, context)
'Parse the XML. If they exist, display the prefix and
'namespace URI of each element.
while (reader.Read())
if (reader.IsStartElement())
if (reader.Prefix=String.Empty)
Console.WriteLine("<{0}>", reader.LocalName)
else
Console.Write("<{0}:{1}>", reader.Prefix, reader.LocalName)
Console.WriteLine(" The namespace URI is " + reader.NamespaceURI)
end if
end if
end while
'Close the reader.
reader.Close()
end sub
end class
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
이 생성자는 지정된 문자열을 XML의 조각으로 구문 분석합니다. XML 조각이 요소 또는 특성인 경우 올바른 형식의 XML 문서에 대한 루트 수준 규칙을 무시할 수 있습니다. 이 생성자는 에서 ReadInnerXml반환된 문자열을 처리할 수 있습니다.
다음 표에는 판독기가 서로 다른 각 노드 형식을 구문 분석하는 방법과 에 대한 fragType
유효한 값이 나열되어 있습니다.
XmlNodeType | 조각에 포함될 수 있음 |
---|---|
요소 | 유효한 요소 콘텐츠(예: 요소, 주석, 처리 지침, CDATA 섹션, 텍스트 및 엔터티 참조의 조합). XML 선언을 제공할 수도 있습니다. 이렇게 하면 개체에 설정하지 않고 XML 조각에 대한 인코딩을 지정할 수 있습니다 XmlParserContext . |
attribute | 특성의 값(따옴표 안의 부분)입니다. |
문서 | 전체 XML 문서의 내용입니다. 이렇게 하면 문서 수준 규칙이 적용됩니다. |
추가 정보
적용 대상
XmlTextReader(String, TextReader, XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 URL과 TextReaderXmlNameTable를 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url, System::IO::TextReader ^ input, System::Xml::XmlNameTable ^ nt);
public XmlTextReader (string url, System.IO.TextReader input, System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : string * System.IO.TextReader * System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Public Sub New (url As String, input As TextReader, nt As XmlNameTable)
매개 변수
- url
- String
외부 리소스를 확인하는 데 사용할 URL입니다.
BaseURI는 이 값으로 설정됩니다.
url
이null
이면 BaseURI
가 String.Empty
로 설정됩니다.
- input
- TextReader
읽을 XML 데이터를 포함하는 TextReader
입니다.
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
예외
nt
값이 null
입니다.
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
TextReader
가 이미 올바른 인코딩으로 설정된 것으로 가정합니다. 이는 다중 파트 MIME 시나리오에서 스트림에서 일부 항목을 이미 읽은 클라이언트에서 사용됩니다.
추가 정보
적용 대상
XmlTextReader(String, Stream, XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 URL, 스트림 및 XmlNameTable을 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url, System::IO::Stream ^ input, System::Xml::XmlNameTable ^ nt);
public XmlTextReader (string url, System.IO.Stream input, System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : string * System.IO.Stream * System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Public Sub New (url As String, input As Stream, nt As XmlNameTable)
매개 변수
- url
- String
외부 리소스를 확인하는 데 사용할 URL입니다.
BaseURI는 이 값으로 설정됩니다.
url
이null
이면 BaseURI
가 String.Empty
로 설정됩니다.
- input
- Stream
읽을 XML 데이터를 포함하고 있는 스트림입니다.
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
예외
input
또는 nt
값이 null
인 경우
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
추가 정보
적용 대상
XmlTextReader(Stream, XmlNodeType, XmlParserContext)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 스트림, XmlNodeType, XmlParserContext를 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::IO::Stream ^ xmlFragment, System::Xml::XmlNodeType fragType, System::Xml::XmlParserContext ^ context);
public XmlTextReader (System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext? context);
public XmlTextReader (System.IO.Stream xmlFragment, System.Xml.XmlNodeType fragType, System.Xml.XmlParserContext context);
new System.Xml.XmlTextReader : System.IO.Stream * System.Xml.XmlNodeType * System.Xml.XmlParserContext -> System.Xml.XmlTextReader
Public Sub New (xmlFragment As Stream, fragType As XmlNodeType, context As XmlParserContext)
매개 변수
- xmlFragment
- Stream
구문 분석할 XML 조각을 포함하는 스트림입니다.
- fragType
- XmlNodeType
XML 조각의 XmlNodeType입니다. 또한 조각에 포함되는 사항을 결정합니다. 아래 표를 참조하세요.
- context
- XmlParserContext
xmlFragment
가 구문 분석될 XmlParserContext입니다. 여기에는 사용할, 인코딩, 네임스페이스 범위, 현재 및 범위가 포함됩니다 XmlNameTablexml:space
.xml:lang
예외
fragType
이 Element, Attribute 또는 Document XmlNodeType
이 아닌 경우
xmlFragment
이(가) null
인 경우
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
이 생성자는 지정된 문자열을 XML의 조각으로 구문 분석합니다. XML 조각이 요소 또는 특성인 경우 올바른 형식의 XML 문서에 대한 루트 수준 규칙을 무시할 수 있습니다.
다음 표에서는 에 유효한 값을 나열합니다 fragType
.
XmlNodeType | 조각에 포함될 수 있음 |
---|---|
Element |
유효한 요소 콘텐츠(예: 요소, 주석, 처리 지침, CDATA 섹션, 텍스트 및 엔터티 참조의 조합). XML 선언을 제공할 수도 있습니다. 이렇게 하면 개체에 설정하지 않고 XML 조각에 대한 인코딩을 지정할 수 있습니다 XmlParserContext . |
Attribute |
특성의 값(따옴표 안의 부분)입니다. |
Document |
전체 XML 문서의 내용입니다. 이렇게 하면 문서 수준 규칙이 적용됩니다. |
판독기는 다음을 사용하여 스트림의 인코딩을 확인합니다.
XmlParserContext.Encoding 속성을 확인하여 인코딩을 확인합니다.
속성이 인
Encoding
경우 판독기는null
스트림의 시작 부분에서 바이트 순서 표시를 확인합니다.속성이
Encoding
이null
고 바이트 순서 표시를 찾을 수 없는 경우 판독기는 스트림이 UTF-8로 인코딩된 것으로 가정합니다.
추가 정보
적용 대상
XmlTextReader(String, TextReader)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 URL과 TextReader를 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url, System::IO::TextReader ^ input);
public XmlTextReader (string url, System.IO.TextReader input);
new System.Xml.XmlTextReader : string * System.IO.TextReader -> System.Xml.XmlTextReader
Public Sub New (url As String, input As TextReader)
매개 변수
- input
- TextReader
읽을 XML 데이터를 포함하는 TextReader
입니다.
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
TextReader
가 이미 올바른 인코딩으로 설정된 것으로 가정합니다. 이는 다중 파트 MIME 시나리오에서 스트림에서 이미 몇 가지를 읽은 클라이언트에서 사용됩니다.
추가 정보
적용 대상
XmlTextReader(String, Stream)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 URL과 스트림을 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url, System::IO::Stream ^ input);
public XmlTextReader (string url, System.IO.Stream input);
new System.Xml.XmlTextReader : string * System.IO.Stream -> System.Xml.XmlTextReader
Public Sub New (url As String, input As Stream)
매개 변수
- input
- Stream
읽을 XML 데이터를 포함하고 있는 스트림입니다.
예외
input
이(가) null
인 경우
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
추가 정보
적용 대상
XmlTextReader(String, XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 파일과 XmlNameTable을 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url, System::Xml::XmlNameTable ^ nt);
public XmlTextReader (string url, System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : string * System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Public Sub New (url As String, nt As XmlNameTable)
매개 변수
- url
- String
읽을 XML 데이터를 포함하는 파일의 URL입니다.
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
예외
nt
값이 null
입니다.
지정된 파일을 찾을 수 없는 경우
파일 이름 또는 디렉터리 부분을 찾을 수 없는 경우
url
이 빈 문자열인 경우
url
경로는 유효한 URI가 아닙니다.
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
추가 정보
적용 대상
XmlTextReader(Stream, XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 스트림, XmlNameTable를 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::IO::Stream ^ input, System::Xml::XmlNameTable ^ nt);
public XmlTextReader (System.IO.Stream input, System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : System.IO.Stream * System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Public Sub New (input As Stream, nt As XmlNameTable)
매개 변수
- input
- Stream
읽을 XML 데이터를 포함하고 있는 스트림입니다.
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
예외
input
또는 nt
값이 null
인 경우
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
는 XmlTextReader 를 사용하여 System.Text.Encoding스트림을 디코딩합니다.
이름 테이블을 지정하는 경우 이 생성자는 해당 테이블에 이미 정의된 이름을 사용합니다.
추가 정보
적용 대상
XmlTextReader(XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 XmlTextReader를 사용하여 XmlNameTable 클래스의 새 인스턴스를 초기화합니다.
protected:
XmlTextReader(System::Xml::XmlNameTable ^ nt);
protected XmlTextReader (System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Protected Sub New (nt As XmlNameTable)
매개 변수
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
추가 정보
적용 대상
XmlTextReader(String)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정한 파일을 포함하는 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::String ^ url);
public XmlTextReader (string url);
new System.Xml.XmlTextReader : string -> System.Xml.XmlTextReader
Public Sub New (url As String)
매개 변수
예외
지정된 파일을 찾을 수 없는 경우
파일 이름 또는 디렉터리 부분을 찾을 수 없는 경우
url
이 빈 문자열인 경우
url
경로는 유효한 URI가 아닙니다.
예제
다음 예제에서는 XML 파일을 읽고 각 노드를 표시합니다.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlTextReader^ reader = nullptr;
String^ filename = "items.xml";
try
{
// Load the reader with the data file and ignore all white space nodes.
reader = gcnew XmlTextReader( filename );
reader->WhitespaceHandling = WhitespaceHandling::None;
// Parse the file and display each of the nodes.
while ( reader->Read() )
{
switch ( reader->NodeType )
{
case XmlNodeType::Element:
Console::Write( "<{0}>", reader->Name );
break;
case XmlNodeType::Text:
Console::Write( reader->Value );
break;
case XmlNodeType::CDATA:
Console::Write( "<![CDATA[{0}]]>", reader->Value );
break;
case XmlNodeType::ProcessingInstruction:
Console::Write( "<?{0} {1}?>", reader->Name, reader->Value );
break;
case XmlNodeType::Comment:
Console::Write( "<!--{0}-->", reader->Value );
break;
case XmlNodeType::XmlDeclaration:
Console::Write( "<?xml version='1.0'?>" );
break;
case XmlNodeType::Document:
break;
case XmlNodeType::DocumentType:
Console::Write( "<!DOCTYPE {0} [{1}]", reader->Name, reader->Value );
break;
case XmlNodeType::EntityReference:
Console::Write( reader->Name );
break;
case XmlNodeType::EndElement:
Console::Write( "</{0}>", reader->Name );
break;
}
}
}
finally
{
if ( reader != nullptr )
reader->Close();
}
}
using System;
using System.IO;
using System.Xml;
public class Sample {
private const String filename = "items.xml";
public static void Main() {
XmlTextReader reader = null;
try {
// Load the reader with the data file and ignore all white space nodes.
reader = new XmlTextReader(filename);
reader.WhitespaceHandling = WhitespaceHandling.None;
// Parse the file and display each of the nodes.
while (reader.Read()) {
switch (reader.NodeType) {
case XmlNodeType.Element:
Console.Write("<{0}>", reader.Name);
break;
case XmlNodeType.Text:
Console.Write(reader.Value);
break;
case XmlNodeType.CDATA:
Console.Write("<![CDATA[{0}]]>", reader.Value);
break;
case XmlNodeType.ProcessingInstruction:
Console.Write("<?{0} {1}?>", reader.Name, reader.Value);
break;
case XmlNodeType.Comment:
Console.Write("<!--{0}-->", reader.Value);
break;
case XmlNodeType.XmlDeclaration:
Console.Write("<?xml version='1.0'?>");
break;
case XmlNodeType.Document:
break;
case XmlNodeType.DocumentType:
Console.Write("<!DOCTYPE {0} [{1}]", reader.Name, reader.Value);
break;
case XmlNodeType.EntityReference:
Console.Write(reader.Name);
break;
case XmlNodeType.EndElement:
Console.Write("</{0}>", reader.Name);
break;
}
}
}
finally {
if (reader!=null)
reader.Close();
}
}
} // End class
Option Strict
Option Explicit
Imports System.IO
Imports System.Xml
'Reads an XML document
Public Class Sample
Private Const filename As String = "items.xml"
Public Shared Sub Main()
Dim reader As XmlTextReader = Nothing
Try
' Load the reader with the data file and ignore all white space nodes.
reader = New XmlTextReader(filename)
reader.WhitespaceHandling = WhitespaceHandling.None
' Parse the file and display each of the nodes.
While reader.Read()
Select Case reader.NodeType
Case XmlNodeType.Element
Console.Write("<{0}>", reader.Name)
Case XmlNodeType.Text
Console.Write(reader.Value)
Case XmlNodeType.CDATA
Console.Write("<![CDATA[{0}]]>", reader.Value)
Case XmlNodeType.ProcessingInstruction
Console.Write("<?{0} {1}?>", reader.Name, reader.Value)
Case XmlNodeType.Comment
Console.Write("<!--{0}-->", reader.Value)
Case XmlNodeType.XmlDeclaration
Console.Write("<?xml version='1.0'?>")
Case XmlNodeType.Document
Case XmlNodeType.DocumentType
Console.Write("<!DOCTYPE {0} [{1}]", reader.Name, reader.Value)
Case XmlNodeType.EntityReference
Console.Write(reader.Name)
Case XmlNodeType.EndElement
Console.Write("</{0}>", reader.Name)
End Select
End While
Finally
If Not (reader Is Nothing) Then
reader.Close()
End If
End Try
End Sub
End Class
이 예제에서는 파일 를 items.xml
입력으로 사용합니다.
<?xml version="1.0"?>
<!-- This is a sample XML document -->
<!DOCTYPE Items [<!ENTITY number "123">]>
<Items>
<Item>Test with an entity: &number;</Item>
<Item>test with a child element <more/> stuff</Item>
<Item>test with a CDATA section <![CDATA[<456>]]> def</Item>
<Item>Test with an char entity: A</Item>
<!-- Fourteen chars in this element.-->
<Item>1234567890ABCD</Item>
</Items>
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
파일이 액세스 자격 증명이 필요한 리소스에 있는 경우 속성을 사용하여 XmlResolver 필요한 자격 증명을 지정합니다.
참고
.NET Framework 버전 1.1에서 부분적으로 신뢰할 수 있는 코드는 속성을 설정할 XmlResolver
수 없습니다. 해결 방법은 필요한 자격 증명을 사용하여 을 XmlUrlResolver 만들고, 메서드에 URI를 XmlUrlResolver.GetEntity 전달한 다음, 결과 개체를 Stream 사용하여 를 생성하는 XmlTextReader
것입니다. 해결 방법은 다음 C# 코드에 설명되어 있습니다.
// Create a resolver with the necessary credentials.
XmlUrlResolver resolver = new XmlUrlResolver();
NetworkCredential nc = new NetworkCredential(SecurelyStoredUserName, SecurelyStoredPassword, SecurelyStoredDomain);
resolver.Credentials = nc;
// Get a Stream object containing the XML file.
Uri myUri = new Uri ("http://myServer/data/books.xml");
Stream s=(Stream)resolver.GetEntity(myUri, null, typeof(Stream));
// Construct a reader using the Stream object.
XmlTextReader reader = new XmlTextReader(s);
추가 정보
적용 대상
XmlTextReader(TextReader)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 XmlTextReader를 사용하여 TextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::IO::TextReader ^ input);
public XmlTextReader (System.IO.TextReader input);
new System.Xml.XmlTextReader : System.IO.TextReader -> System.Xml.XmlTextReader
Public Sub New (input As TextReader)
매개 변수
- input
- TextReader
읽을 XML 데이터를 포함하는 TextReader
입니다.
예제
다음 예제에서는 클래스를 사용 하 여 개체에 XmlTextReader
XML 문자열을 로드 합니다 StringReader .
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
String^ xmlData = "<book>\r\n <title>Oberon's Legacy</title>\r\n <price>5.95</price>\r\n </book>";
// Create the reader.
XmlTextReader^ reader = gcnew XmlTextReader( gcnew StringReader( xmlData ) );
reader->WhitespaceHandling = WhitespaceHandling::None;
// Display each element node.
while ( reader->Read() )
{
switch ( reader->NodeType )
{
case XmlNodeType::Element:
Console::Write( "<{0}>", reader->Name );
break;
case XmlNodeType::Text:
Console::Write( reader->Value );
break;
case XmlNodeType::EndElement:
Console::Write( "</{0}>", reader->Name );
break;
}
}
// Close the reader.
reader->Close();
}
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
string xmlData =
@"<book>
<title>Oberon's Legacy</title>
<price>5.95</price>
</book>";
// Create the reader.
XmlTextReader reader = new XmlTextReader(new StringReader(xmlData));
reader.WhitespaceHandling = WhitespaceHandling.None;
// Display each element node.
while (reader.Read()){
switch (reader.NodeType){
case XmlNodeType.Element:
Console.Write("<{0}>", reader.Name);
break;
case XmlNodeType.Text:
Console.Write(reader.Value);
break;
case XmlNodeType.EndElement:
Console.Write("</{0}>", reader.Name);
break;
}
}
// Close the reader.
reader.Close();
}
} // End class
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim xmlData as string
xmlData = "<book>" & _
" <title>Oberon's Legacy</title>" & _
" <price>5.95</price>" & _
"</book>"
' Create the reader.
Dim reader as XmlTextReader = new XmlTextReader(new StringReader(xmlData))
reader.WhitespaceHandling = WhitespaceHandling.None
' Display each element node.
while reader.Read()
select case reader.NodeType
case XmlNodeType.Element
Console.Write("<{0}>", reader.Name)
case XmlNodeType.Text
Console.Write(reader.Value)
case XmlNodeType.EndElement
Console.Write("</{0}>", reader.Name)
end select
end while
' Close the reader.
reader.Close()
end sub
end class
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
TextReader
가 이미 올바른 인코딩으로 설정된 것으로 가정합니다. 이는 다중 파트 MIME 시나리오에서 스트림에서 이미 몇 가지를 읽은 클라이언트에서 사용됩니다.
추가 정보
적용 대상
XmlTextReader(Stream)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 스트림을 사용하여 XmlTextReader 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::IO::Stream ^ input);
public XmlTextReader (System.IO.Stream input);
new System.Xml.XmlTextReader : System.IO.Stream -> System.Xml.XmlTextReader
Public Sub New (input As Stream)
매개 변수
- input
- Stream
읽을 XML 데이터를 포함하고 있는 스트림입니다.
예외
input
이(가) null
인 경우
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
는 XmlTextReader 를 사용하여 System.Text.Encoding스트림을 디코딩합니다.
추가 정보
적용 대상
XmlTextReader(TextReader, XmlNameTable)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
지정된 XmlTextReader 및 TextReader를 사용하여 XmlNameTable 클래스의 새 인스턴스를 초기화합니다.
public:
XmlTextReader(System::IO::TextReader ^ input, System::Xml::XmlNameTable ^ nt);
public XmlTextReader (System.IO.TextReader input, System.Xml.XmlNameTable nt);
new System.Xml.XmlTextReader : System.IO.TextReader * System.Xml.XmlNameTable -> System.Xml.XmlTextReader
Public Sub New (input As TextReader, nt As XmlNameTable)
매개 변수
- input
- TextReader
읽을 XML 데이터를 포함하는 TextReader
입니다.
- nt
- XmlNameTable
사용할 XmlNameTable
입니다.
예외
nt
값은 null
입니다.
설명
참고
.NET Framework 2.0부터는 메서드를 사용하여 XmlReader.Create 새 기능을 활용하여 인스턴스를 만드는 XmlReader 것이 좋습니다.
TextReader
가 이미 올바른 인코딩으로 설정된 것으로 가정합니다. 이는 다중 파트 MIME 시나리오에서 스트림에서 이미 몇 가지를 읽은 클라이언트에서 사용됩니다.
추가 정보
적용 대상
.NET