I want to read some Nodes from a XmlDocument-Object using the SelectNodes-Method and the XPathNavigator-Class.
But C# is unable to evaluate this (validated with XMLSpy) XPath-Expressen:
//LogicUnit[exists(Level[@val = 'R'])]/LogicLines[exists(LogicLine/DATAVIEW_SRC)]
The Runtime throws the XPAthException "Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function."
I don't understand this exception because my XML-Document doesn't use any Namespaces and there is also no XSLT-Document. This exception always appears if I'm using any XPATH-function.
@val? – John Saunders Oct 26 '11 at 19:15