This is all fine except the Serializer
ignores the root attribute decoration I placed on the HeadlinesArticle
class and so instead of this:
<Articles>
<Article>
...
</Article>
<Article>
...
</Article>
<Article>
...
</Article>
</Articles>
I get this:
<Articles>
<HeadlinesArticle>
...
</HeadlinesArticle>
<HeadlinesArticle>
...
</HeadlinesArticle>
<HeadlinesArticle>
...
</HeadlinesArticle>
</Articles>
Obviously the Serializer is ignoring the
root attribute I placed on the HeadlinesArticle class. So I tried using
the [XmlElement] attribute on the indexer of HeadlinesArticleCollection
class but it basically has no effect at all:
|