XmlLinkedNode.NextSibling 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 node immediately following this node.
public:
virtual property System::Xml::XmlNode ^ NextSibling { System::Xml::XmlNode ^ get(); };
public override System.Xml.XmlNode NextSibling { get; }
public override System.Xml.XmlNode? NextSibling { get; }
member this.NextSibling : System.Xml.XmlNode
Public Overrides ReadOnly Property NextSibling As XmlNode
Property Value
The XmlNode immediately following this node or null
if one does not exist.
Examples
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 );
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new 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);
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.Load("books.xml")
' Display the first two book nodes
Dim book as XmlNode = doc.DocumentElement.FirstChild
Console.WriteLine(book.OuterXml)
Console.WriteLine()
Console.WriteLine(book.NextSibling.OuterXml)
end sub
end class
Applies to
See also
Spolupráca s nami v službe GitHub
Zdroj tohto obsahu nájdete v službe GitHub, kde môžete vytvárať a skúmať problémy a žiadosti o prijatie zmien. Ďalšie informácie nájdete v našom sprievodcovi prispievateľom.