Chapter 11. Other XML Technologies
The System.Xml namespace
comprises the following namespaces and core classes:
System.Xml.*XmlReaderandXmlWriterHigh-performance, forward-only cursors for reading or writing an XML stream
XmlDocumentRepresents an XML document in a W3C-style DOM
System.Xml.XPathInfrastructure and API (
XPathNavigator) for XPath, a string-based language for querying XMLSystem.Xml.XmlSchemaInfrastructure and API for (W3C) XSD schemas
System.Xml.XslInfrastructure and API (
XslCompiledTransform) for performing (W3C) XSLT transformations of XMLSystem.Xml.SerializationSupports the serialization of classes to and from XML (see Chapter 17)
System.Xml.XLinqModern, simplified, LINQ-centric version of
XmlDocument(see Chapter 10)
W3C is an abbreviation for World Wide Web Consortium, where the XML standards are defined.
XmlConvert, the static class for
parsing and formatting XML strings, is covered in Chapter 6.
XmlReader
XmlReader is a
high-performance class for reading an XML stream in a low-level,
forward-only manner.
Consider the following XML file:
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <customer id="123" status="archived"> <firstname>Jim</firstname> <lastname>Bo</lastname> </customer>
To instantiate an XmlReader, you
call the static XmlReader.Create
method, passing in a Stream, a TextReader, or a URI string. For example:
using (XmlReader reader = XmlReader.Create ("customer.xml"))
...Note
Because XmlReader lets you read
from potentially slow sources (Streams and URIs), ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access