Can I make XmlSerializer ignore the namespace (xmlns attribute) on deserialization so that it doesn't matter if the attribute is added or not or even if the attribute is bogus? I know that the source will always be trusted so I don't care about the xmlns attribute.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Yes, you can tell the XmlSerializer to ignore namespaces during de-serialization. Define an XmlTextReader that ignores namespaces. Like so:
Here's an example of how you would de-serialize using that TextReader:
The result is like so:
|
|||||
|
|
Why try to make the XmlSerializer forget how XML works? It's a fact of XML that two elements with the same name but different namespaces are different elements. If you want to process XML that has no namespaces, then you should pre-process it to remove the namespaces, and then pass it to the serializer. |
|||||
|
NamespaceURIit not only affects all of the elements but attributes as well. Sometimes that causes deserializer to ignore attributes which will set them all to null. – Stan R. Jun 9 '09 at 20:40