views:

268

answers:

1

Given the following XML markup:

<root xmlns="Demo">
    <child name="foo"/>
</root>

and an XPathNavigator positioned on the <child> element,

string withNs = navigator.GetAttribute("name", navigator.NamespaceURI);
string withoutNs = navigator.GetAttribute("name", "");

produce strange results: withNs is empty, withoutNs contains foo.

Why is that? I would have expected it would be the other way round, as the name attribute must be in the Demo namespace like the child element.

The MSDN documentation does not mention any magic meaning of passing namespaceURI="", so I assumed you have to pass the real namespace URI of the attribute.

+1  A: 

<>

Attributes to not inherit the namespace of the element to which they belong, as per the w3c specification, and that is why you got those results, which are correct.

bill seacham
Thanks! Silly me. I wanted to verify my assumption about the namespace inheritance before posting here, but gave up too quickly on the not-very-concise XML spec :-( Anyway, here's a great explanation I just found: http://www.xmlplease.com/attributexmlns
Jens Bannmann