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