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.
|
|
|
|
|
|
|
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. |
||
|
|
|
|
be careful, if you overwrite |
||
|
