October 2002
Intermediate to advanced
720 pages
17h 15m
English
To be fully accessible, an XML document must be entirely loaded in memory and its nodes and attributes mapped to relative objects derived from the XmlNode class. The process that builds the XML DOM triggers when you call the Load method. You can use a variety of sources to indicate the XML document to work on, including disk files and URLs and also streams and text readers.
The Load method always transforms the data source into an XmlTextReader object and passes it down to an internal loader object, as shown here:
public virtual void Load(Stream); public virtual void Load(string); public virtual void Load(TextReader); public virtual void Load(XmlReader);
The loader is responsible for reading ...
Read now
Unlock full access