考虑以下XML:
<events xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" artist="Rammstein" festivalsonly="0" page="1" perPage="50" totalPages="1" total="25">
<event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
<id>1985967</id>
<title>Rammstein: "Made in Germany 1995 -2011 LIVE"</title>
<artists>
<artist>Rammstein</artist>
<artist>Deathstars</artist>
<headliner>Rammstein</headliner>
</artists>
</event>
</events>
我想将artists
下的所有代码反序列化为单个列表。到目前为止我所拥有的:
public class Artist
{
public string Value { get; set; }
}
public class HeadLiner : Artist
{
}
public class ArtistCollection : List<Artist>
{
}
public class Event
{
public ArtistCollection Artists { get; set; }
}
我希望最终得到一个包含3个项目的列表(两个艺术家和一个头条新闻)但我只是得到艺术家。是否有可能通过Restsharp使这种行为开箱即用?或者我需要自定义序列化程序?
使用属性,我想我需要XmlInclude
属性,但到目前为止,我喜欢Restsharp的“开箱即用”部分。
答案 0 :(得分:0)
从你发布之日起,我可能有点晚了,但迟到总比没有好。
我相信你的xml需要更像这样:
<events xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" artist="Rammstein" festivalsonly="0" page="1" perPage="50" totalPages="1" total="25">
<event xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
<id>1985967</id>
<title>Rammstein: "Made in Germany 1995 -2011 LIVE"</title>
<artists>
<artist>Rammstein</artist>
<artist>Deathstars</artist>
<artist xsi:type="headliner">Rammstein</artist>
</artists>
</event>
</events>