XmlNodeReader.Skip Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ignora gli elementi figlio del nodo corrente.
public:
override void Skip();
public override void Skip ();
override this.Skip : unit -> unit
Public Overrides Sub Skip ()
Esempio
Nell'esempio seguente viene letto il nodo dell'elemento price nel documento XML.
#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
Commenti
Nota
Nella .NET Framework 2.0, la procedura consigliata consiste nel creare XmlReader istanze usando la XmlReaderSettings classe e il Create metodo . In questo modo è possibile sfruttare appieno tutte le nuove funzionalità introdotte nella .NET Framework. Per altre informazioni, vedere la sezione Osservazioni nella pagina di XmlReader riferimento.
Si supponga, ad esempio, di avere l'input XML seguente:
<a name="bob" age="123">
<x/>abc<y/>
</a>
<b>
...
</b>
Se il lettore è posizionato sul nodo "<a>" o su uno dei relativi attributi, chiamando Skip
posiziona il lettore nel nodo "<b>".
Se il lettore è posizionato su un nodo foglia già (ad esempio, l'elemento "x" o il nodo di testo "abc"), la chiamata è uguale a quella di chiamare Skip
Read.
Questo metodo verifica la presenza di XML ben formato.