XmlLinkedNode.NextSibling Özellik

Tanım

Düğümü bu düğümün hemen ardından alır.

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

Özellik Değeri

XmlNode Bu düğümün hemen ardından gelen veya null mevcut olmayan bir düğüm.

Örnekler

Aşağıdaki örnekte ilk iki kitap düğümü görüntülenir.

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

Şunlara uygulanır

Ayrıca bkz.