XmlNode.LastChild-Eigenschaft
Ruft das letzte untergeordnete Element des Knotens ab.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property LastChild As XmlNode
'Usage
Dim instance As XmlNode
Dim value As XmlNode
value = instance.LastChild
public virtual XmlNode LastChild { get; }
public:
virtual property XmlNode^ LastChild {
XmlNode^ get ();
}
/** @property */
public XmlNode get_LastChild ()
public function get LastChild () : XmlNode
Eigenschaftenwert
Das letzte untergeordnete Element des Knotens. Wenn kein solcher Knoten vorhanden ist, wird NULL (Nothing in Visual Basic) zurückgegeben.
Beispiel
Im folgenden Beispiel wird das Preiselement angezeigt.
Option Explicit
Option Strict
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
Console.WriteLine("Display the price element...")
Console.WriteLine(root.LastChild.OuterXml)
End Sub 'Main
End Class 'Sample
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 price element...");
Console.WriteLine(root.LastChild.OuterXml);
}
}
#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 price element..." );
Console::WriteLine( root->LastChild->OuterXml );
}
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
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.get_FirstChild();
Console.WriteLine("Display the price element...");
Console.WriteLine(root.get_LastChild().get_OuterXml());
} //main
} //Sample
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0