I am trying to get my XPathNavigator to work ( to go to previous attribute name "NAME") with attached piece of code but somehow it doesn't want to move.
Neither thisNavigator.MoveToFirstAttribute() nor thisNavigator.MoveToAttribute("NAME", ""); works...
My xml contents looks more or less less like this
<PARAM NAME="Debug" HINT="Debug" TYPE="Int" VALUE="1" LEVEL="3"/>
My code:
switch (thisNavigator.Name)
{
case "VALUE":
{
thisNavigator.MoveToFirstAttribute();
thisNavigator.MoveToAttribute("NAME", "");
}
EDIT Just to be sure I have just checked :
string x = thisNavigator.NamespaceURI;
and it's indeed empty so now I am even more confused.
EDIT2 Ok I have solved this but kind of a long way around. I have to go back to parent, then back to this child and then to the attribute with given name. If anyone knows why it doesn't want to go to given attribute 'backwards' I would be grateful for answer. Here's my code:
thisNavigator.MoveToParent();
thisNavigator.MoveToFirstChild();
thisNavigator.MoveToAttribute("NAME", "" );