using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlTextReader txtreader = new XmlTextReader("attrs.xml"); XmlValidatingReader reader = new XmlValidatingReader(txtreader); reader.MoveToContent(); string isbn = reader.GetAttribute("ISBN"); Console.WriteLine("The ISBN value: " + isbn); reader.Close(); } }
30.5.XmlReader | ||||
30.5.1. | XmlReader: ReadElementContentAsString | |||
30.5.2. | Create XmlReader from Stream | |||
30.5.3. | Using XmlReader to read Xml result set from database | |||
30.5.4. | XmlReaderSettings and XmlWriterSettings | |||
30.5.5. | XmlTextReader in Action | |||
30.5.6. | Read Xml output from database | |||
30.5.7. | Chaining an XmlReader to an XmlWriter | |||
30.5.8. | extends XmlReader to wrap Sql statement | |||
30.5.9. | Create the validating reader |