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 XmlNavigator is designed to allow one to superimpose XPath navigation on most any data model.

I have implemented my derived XPathNavigator class and it works very well. Very well that is except for XPath expressions that search recursively, i.e. "//*".

I am pretty sure that I have a subtle bug in the Clone, MoveToFirstChild, or MoveTo overides and I thought it might help to look at another example if one exists.

Also, I am sure that I have seen magazine articles that discuss this. My searches have proved yielded nothing. Maybe someone remembers such an article.

link|improve this question

So what is the question? I don't see one. – Dimitre Novatchev Dec 23 '08 at 23:56
If you could rephrase whatever 'question' is in there, it ought to be re-opened. – George Stocker Dec 24 '08 at 5:04
@Gortok: It seems the question is: "Maybe someone remembers such an article?". This is why I provided an answer. If you could, please edit the question and re-open it, I'd appreciate that. Thank you. – Dimitre Novatchev Dec 24 '08 at 5:27
The question is: I am looking for a C# example implementation of a class derived from Microsoft's XPathNavigator class Learn to read before you close something. – FlySwat Dec 24 '08 at 15:29
1  
@Jonathan Holland: This is a statement -- not a question. – Dimitre Novatchev Dec 24 '08 at 15:36
show 1 more comment
feedback

2 Answers

up vote 3 down vote accepted

Look at this article by Aaron Skonnard:

"XPath Selections and Custom Functions, and More",

which provides an example of a class derived from XPathNavigator.

link|improve this answer
feedback

A bug in your implementation or the MS one? If it's the MS one then you can use reflector to take a peek inside.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.