Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlLinkedNode::NextSibling Property

 

Gets the node immediately following this node.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
property XmlNode^ NextSibling {
	virtual XmlNode^ get() override;
}

Property Value

Type: System.Xml::XmlNode^

The XmlNode immediately following this node or null if one does not exist.

The following example displays the first two book nodes.

#using <System.Xml.dll>

using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
   XmlDocument^ doc = gcnew XmlDocument;
   doc->Load( "books.xml" );

   // Display the first two book nodes.
   XmlNode^ book = doc->DocumentElement->FirstChild;
   Console::WriteLine( book->OuterXml );
   Console::WriteLine();
   Console::WriteLine( book->NextSibling->OuterXml );
}

Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft