Tagged Questions

3
votes
2answers
452 views

Implementing my own XPathNavigator in C#

I am looking for a C# example implementation of a class derived from Microsoft's XPathNavigator class. Can any one point me at such an article? As you may (or may not) know, the …
2
votes
3answers
1k views

Using Xpath With Default Namespace in C#

I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows: XmlElement myXML = ...; XPathNavigator navigato …
2
votes
1answer
288 views

Parse XPath Expressions

Hi, I am trying to create a 'AET' (Abstract Expression Tree) for XPath (as I am writing a WYSIWYG XSL editor). I have been hitting my head against the wall with the XPath BNF for …
1
vote
1answer
76 views

Is it possible to retrieve the original XML from XPathNavigator?

I have an XML document, want to do syntax highlighting. The code uses XPathDocument, XPathNavigator and XPathNodeIterator . After I call Select(), how can I get the original te …
0
votes
1answer
69 views

Can’t read xml through XPathNavigator

Here is my code, I don't know why I can't read the data through XPathNavigator. But it was well before I add namespace and schema. XmlReaderSettings settings = new Xml …