XmlLinkedNode.NextSibling 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得這個節點的後置節點。
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
屬性值
這個節點的後置 XmlNode,如果這個節點不存在,則為 null
。
範例
下列範例會顯示前兩個書籍節點。
#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