XmlNode.ChildNodes プロパティ
ノードのすべての子ノードを取得します。
Public Overridable ReadOnly Property ChildNodes As XmlNodeList
[C#]
public virtual XmlNodeList ChildNodes {get;}
[C++]
public: __property virtual XmlNodeList* get_ChildNodes();
[JScript]
public function get ChildNodes() : XmlNodeList;
プロパティ値
ノードのすべての子ノードを格納している XmlNodeList 。
子ノードがない場合、このプロパティは空の XmlNodeList を返します。
使用例
[Visual Basic, C#, C++] ルート要素のすべての子ノードを表示する例を次に示します。
Option Strict
Option Explicit
Imports System
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
Dim doc As New XmlDocument()
doc.LoadXml("<book ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"<price>19.95</price>" & _
"</book>")
Dim root As XmlNode = doc.FirstChild
'Display the contents of the child nodes.
If root.HasChildNodes Then
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Console.WriteLine(root.ChildNodes(i).InnerText)
Next i
End If
End Sub 'Main
End Class 'Sample
[C#]
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"<price>19.95</price>" +
"</book>");
XmlNode root = doc.FirstChild;
//Display the contents of the child nodes.
if (root.HasChildNodes)
{
for (int i=0; i<root.ChildNodes.Count; i++)
{
Console.WriteLine(root.ChildNodes[i].InnerText);
}
}
}
}
[C++]
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument* doc = new XmlDocument();
doc->LoadXml(S"<book ISBN='1-861001-57-5'>"
S"<title>Pride And Prejudice</title>"
S"<price>19.95</price>"
S"</book>");
XmlNode* root = doc->FirstChild;
//Display the contents of the child nodes.
if (root->HasChildNodes)
{
for (int i=0; i<root->ChildNodes->Count; i++)
{
Console::WriteLine(root->ChildNodes->ItemOf[i]->InnerText);
}
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET