XmlNode.FirstChild 속성

정의

노드의 첫 번째 자식을 가져옵니다.

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

속성 값

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(코어) 수준 1 사양을 참조하세요.

적용 대상