XmlNodeReader.Skip Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Geçerli düğümün alt öğelerini atlar.
public:
override void Skip();
public override void Skip ();
override this.Skip : unit -> unit
Public Overrides Sub Skip ()
Örnekler
Aşağıdaki örnek, XML belgesindeki fiyat öğesi düğümünü okur.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlNodeReader^ reader = nullptr;
try
{
//Create and load the XML document.
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<!-- sample XML -->"
"<book>"
"<title>Pride And Prejudice</title>"
"<price>19.95</price>"
"</book>" );
//Load the XmlNodeReader
reader = gcnew XmlNodeReader( doc );
reader->MoveToContent(); //Move to the book node.
reader->Read(); //Read the book start tag.
reader->Skip(); //Skip the title element.
Console::WriteLine( reader->ReadOuterXml() ); //Read the price element.
}
finally
{
if ( reader != nullptr )
reader->Close();
}
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlNodeReader reader = null;
try
{
//Create and load the XML document.
XmlDocument doc = new XmlDocument();
doc.LoadXml("<!-- sample XML -->" +
"<book>" +
"<title>Pride And Prejudice</title>" +
"<price>19.95</price>" +
"</book>");
//Load the XmlNodeReader
reader = new XmlNodeReader(doc);
reader.MoveToContent(); //Move to the book node.
reader.Read(); //Read the book start tag.
reader.Skip(); //Skip the title element.
Console.WriteLine(reader.ReadOuterXml()); //Read the price element.
}
finally
{
if (reader != null)
reader.Close();
}
}
} // End class
Option Explicit
Option Strict
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
Dim reader As XmlNodeReader = Nothing
Try
'Create and load the XML document.
Dim doc As New XmlDocument()
doc.LoadXml("<!-- sample XML -->" & _
"<book>" & _
"<title>Pride And Prejudice</title>" & _
"<price>19.95</price>" & _
"</book>")
'Load the XmlNodeReader
reader = New XmlNodeReader(doc)
reader.MoveToContent() 'Move to the book node.
reader.Read() 'Read the book start tag.
reader.Skip() 'Skip the title element.
Console.WriteLine(reader.ReadOuterXml()) 'Read the price element.
Finally
If Not (reader Is Nothing) Then
reader.Close()
End If
End Try
End Sub
End Class
Açıklamalar
Not
.NET Framework 2.0'da önerilen yöntem, sınıfını XmlReaderSettings ve Create yöntemini kullanarak örnekler oluşturmaktırXmlReader. Bu, .NET Framework sunulan tüm yeni özelliklerden tam olarak yararlanmanızı sağlar. Daha fazla bilgi için başvuru sayfasındaki Açıklamalar bölümüne XmlReader bakın.
Örneğin, aşağıdaki XML girişlerine sahip olduğunuzu varsayalım:
<a name="bob" age="123">
<x/>abc<y/>
</a>
<b>
...
</b>
Okuyucu "<a>" düğümüne veya özniteliklerinden birine konumlandırıldıysa, çağrısı Skip
okuyucuyu "<b>" düğümüne yerleştirir.
Okuyucu zaten bir yaprak düğümde konumlandırılmışsa ("x" öğesi veya "abc" metin düğümü gibi), çağrısı Skip
ile aynıdır Read.
Bu yöntem iyi biçimlendirilmiş XML'i denetler.