XmlValidatingReader.MoveToFirstAttribute Method
.NET Framework 2.0
Moves to the first attribute.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Assembly: System.Xml (in system.xml.dll)
Note |
|---|
| The XmlValidatingReader class is obsolete in Microsoft .NET Framework version 2.0. You can create a validating XmlReader instance by using the XmlReaderSettings class and the Create method. For more information, see Validating XML Data with XmlReader. |
The following example reads an XML fragment.
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { //Create the validating reader. XmlTextReader txtreader = new XmlTextReader("attrs.xml"); XmlValidatingReader reader = new XmlValidatingReader(txtreader); //Read the genre attribute. reader.MoveToContent(); reader.MoveToFirstAttribute(); string genre=reader.Value; Console.WriteLine("The genre value: " + genre); //Close the reader. reader.Close(); } } // End class
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
//Create the validating reader.
XmlTextReader txtReader = new XmlTextReader("attrs.xml");
XmlValidatingReader reader = new XmlValidatingReader(txtReader);
//Read the genre attribute.
reader.MoveToContent();
reader.MoveToFirstAttribute();
String genre = reader.get_Value();
Console.WriteLine(("The genre value: " + genre));
//Close the reader.
reader.Close();
} //main
} //End class Sample
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note