Errata


Print Print Icon

Submit your own errata for this product.


The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.


Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question



Version Location Description Submitted By Corrected
Printed Page xii
code block under the "Running the Examples" section

Remove the -
writer.WriteEndElement ();
line from that code.

Anonymous 
Printed Page ix
3rd paragraph

"...not only does it use XML internally, but it also maks its XML tools..."
should read:
"...not only does it use XML internally, but it also makes its XML tools..."

Anonymous 
Printed Page 23
Example 2-2

Need "using System.Text;" for StringBuilder

Note from the Author or Editor:
On page 23, Example 2-2 should begin as follows:

using System;
using System.IO;
using System.Text;
using System.Xml;

Anonymous 
Printed Page 46
example 3-3, 2/3 of way down page

// Write another attribute
writer.WriteStartAttribute"name", "foo");

should be:

// Write another attribute
writer.WriteStartAttribute("name", "foo");

Anonymous 
Printed Page 64
3rd code snippet, 4th line

if (readState == ReadState.Interactive || node == null) {
should be:
if (readState != ReadState.Interactive || node == null) {

Anonymous 
Printed Page 90
Example 5-1

The call to HasFeature NOW HAS the parameters (feature, version) instead of (feature, null).

Anonymous  May 2004
Printed Page 116
code example for "Creating an XPathNavigator"

Document.Load(filename);

NOW READS:
document.Load(filename);

Anonymous  May 2004