XmlNodeList.GetEnumerator 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
노드의 컬렉션을 반복하는 열거자를 가져옵니다.
public:
abstract System::Collections::IEnumerator ^ GetEnumerator();
public abstract System.Collections.IEnumerator GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.IEnumerator
Public MustOverride Function GetEnumerator () As IEnumerator
반환
노드의 컬렉션 전체에서 반복하는 데 사용되는 열거자입니다.
구현
예제
다음 예제에서는 모든 책 제목을 표시합니다.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
using namespace System::Collections;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->Load( "2books.xml" );
//Get and display all the book titles.
XmlElement^ root = doc->DocumentElement;
XmlNodeList^ elemList = root->GetElementsByTagName( "title" );
IEnumerator^ ienum = elemList->GetEnumerator();
while ( ienum->MoveNext() )
{
XmlNode^ title = dynamic_cast<XmlNode^>(ienum->Current);
Console::WriteLine( title->InnerText );
}
}
using System;
using System.IO;
using System.Xml;
using System.Collections;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.Load("2books.xml");
//Get and display all the book titles.
XmlElement root = doc.DocumentElement;
XmlNodeList elemList = root.GetElementsByTagName("title");
IEnumerator ienum = elemList.GetEnumerator();
while (ienum.MoveNext()) {
XmlNode title = (XmlNode) ienum.Current;
Console.WriteLine(title.InnerText);
}
}
}
Imports System.IO
Imports System.Xml
Imports System.Collections
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.Load("2books.xml")
'Get and display all the book titles.
Dim root as XmlElement = doc.DocumentElement
Dim elemList as XmlNodeList = root.GetElementsByTagName("title")
Dim ienum as IEnumerator = elemList.GetEnumerator()
while (ienum.MoveNext())
Dim title as XmlNode
title = CType(ienum.Current, XmlNode)
Console.WriteLine(title.InnerText)
end while
end sub
end class
이 예제에서는 파일을 2books.xml
입력으로 사용합니다.
<!--sample XML fragment-->
<bookstore>
<book genre='novel' ISBN='10-861003-324'>
<title>The Handmaid's Tale</title>
<price>19.95</price>
</book>
<book genre='novel' ISBN='1-861001-57-5'>
<title>Pride And Prejudice</title>
<price>24.95</price>
</book>
</bookstore>
설명
의 노드 컬렉션에 대한 간단한 "foreach" 스타일 반복을 XmlNodeList
제공합니다.