XmlNode.FirstChild プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ノードの最初の子を取得します。
public:
virtual property System::Xml::XmlNode ^ FirstChild { System::Xml::XmlNode ^ get(); };
public virtual System.Xml.XmlNode FirstChild { get; }
public virtual System.Xml.XmlNode? FirstChild { get; }
member this.FirstChild : System.Xml.XmlNode
Public Overridable ReadOnly Property FirstChild As XmlNode
プロパティ値
ノードの最初の子。 そのようなノードがない場合は、null
が返されます。
例
次の例では、タイトル要素を表示します。
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book ISBN='1-861001-57-5'>"
"<title>Pride And Prejudice</title>"
"<price>19.95</price>"
"</book>" );
XmlNode^ root = doc->FirstChild;
Console::WriteLine( "Display the title element..." );
Console::WriteLine( root->FirstChild->OuterXml );
}
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;
Console.WriteLine("Display the title element...");
Console.WriteLine(root.FirstChild.OuterXml);
}
}
Option Explicit
Option Strict
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
Console.WriteLine("Display the title element...")
Console.WriteLine(root.FirstChild.OuterXml)
End Sub
End Class
注釈
子ノードの詳細については、W3C DOM (Core) レベル 1 の仕様を参照してください