.NET Framework Class Library
XmlNode.NextSibling Property
Gets the node immediately following this node.
Assembly: System.Xml (in System.Xml.dll)
Syntax
Visual Basic
Public Overridable ReadOnly Property NextSibling As XmlNode Get
C#
public virtual XmlNode NextSibling { get; }
Visual C++
public: virtual property XmlNode^ NextSibling { XmlNode^ get (); }
F#
abstract NextSibling : XmlNode override NextSibling : XmlNode
Examples
The following example displays all the books in the XML document.
Visual Basic
Imports System Imports System.Xml Imports Microsoft.VisualBasic public class Sample public shared sub Main() Dim doc as XmlDocument = new XmlDocument() doc.Load("books.xml") Dim currNode as XmlNode = doc.DocumentElement.FirstChild Console.WriteLine("First book...") Console.WriteLine(currNode.OuterXml) Dim nextNode as XmlNode = currNode.NextSibling Console.WriteLine(ControlChars.LF + "Second book...") Console.WriteLine(nextNode.OuterXml) end sub end class
C#
using System; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new XmlDocument(); doc.Load("books.xml"); XmlNode currNode = doc.DocumentElement.FirstChild; Console.WriteLine("First book..."); Console.WriteLine(currNode.OuterXml); XmlNode nextNode = currNode.NextSibling; Console.WriteLine("\r\nSecond book..."); Console.WriteLine(nextNode.OuterXml); } }
Visual C++
#using <System.Xml.dll> using namespace System; using namespace System::Xml; int main() { XmlDocument^ doc = gcnew XmlDocument; doc->Load( "books.xml" ); XmlNode^ currNode = doc->DocumentElement->FirstChild; Console::WriteLine( "First book..." ); Console::WriteLine( currNode->OuterXml ); XmlNode^ nextNode = currNode->NextSibling; Console::WriteLine( "\r\nSecond book..." ); Console::WriteLine( nextNode->OuterXml ); }
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also