XContainer.FirstNode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the first child node of this node.
public:
property System::Xml::Linq::XNode ^ FirstNode { System::Xml::Linq::XNode ^ get(); };
public System.Xml.Linq.XNode FirstNode { get; }
public System.Xml.Linq.XNode? FirstNode { get; }
member this.FirstNode : System.Xml.Linq.XNode
Public ReadOnly Property FirstNode As XNode
Property Value
An XNode containing the first child node of the XContainer.
Examples
The following example creates an element that contains child elements. It then gets the first child node of the parent element.
XElement xmlTree = new XElement("Root",
new XElement("Child1", 1),
new XElement("Child2", 2),
new XElement("Child3", 3),
new XElement("Child4", 4),
new XElement("Child5", 5)
);
XNode firstNode = xmlTree.FirstNode;
Console.WriteLine(firstNode);
Dim xmlTree As XElement = _
<Root>
<Child1>1</Child1>
<Child2>2</Child2>
<Child3>3</Child3>
<Child4>4</Child4>
<Child5>5</Child5>
</Root>
Dim firstNode As XNode = xmlTree.FirstNode
Console.WriteLine(firstNode)
This example produces the following output:
<Child1>1</Child1>
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET