我有以下XML:
<CustomTabsConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<CustomTab>
<Header>555</Header>
<TabIsVisible>true</TabIsVisible>
<Tasks>
<Task>
<TaskLabel>Task 23</TaskLabel>
<ButtonLabel />
<ButtonType />
<TaskParameters />
</Task>
<Task>
<TaskLabel>Task 22</TaskLabel>
<ButtonLabel />
<ButtonType>CrystalReports</ButtonType>
</Task>
<Task>
<TaskLabel>Task 21</TaskLabel>
<ButtonLabel />
<ButtonType />
<TaskParameters />
</Task>
</Tasks>
</CustomTab>
</CustomTabInfo>
我需要将其反序列化为以下对象(为简洁起见而简化):
// ####################################################
// CustomTab Model
// ####################################################
[XmlRoot("CustomTab")]
public class CustomTab
{
public CustomTab()
{
}
[XmlElement("Header")]
public String Header { get; set; }
[XmlElement("TabIsVisible")]
public Boolean TabIsVisible { get; set; }
[XmlIgnore]
public TaskCollection TaskCollection { get; set; }
}
// ####################################################
// TaskCollection Model
// ####################################################
public class TaskCollection
{
public TaskCollection()
{
TaskList = new List<UtilitiesTask>();
}
public List<UtilitiesTask> TaskList { get; set; }
}
// ####################################################
// UtilitiesTask Model
// ####################################################
public class UtilitiesTask
{
public UtilitiesTask()
{
}
[XmlElement("TaskLabel")]
public String TaskLabel { get; set; }
[XmlElement("ButtonLabel")]
public String ButtonLabel { get; set; }
[XmlElement("ButtonType")]
public TaskButtonTypeEnums? ButtonType { get; set; }
}
如何将此XML反序列化为此对象?我坚持的是如何声明TaskCollection
和TaskList
,以便填充<Tasks>
&amp; <Task>
个对象。
由于此项目的其他一些限制,我不能简单地将TaskCollection设置为CustomTab中的List对象。
我知道如果TaskCollection是CustomTab下的List:
,以下内容将起作用[XmlArray("Tasks")]
[XmlArrayItem("Task", typeof(UtilitiesTask))]
public List<UtilitiesTask> TaskList { get; set; }
答案 0 :(得分:2)
感谢Sinatr指点我的相关帖子。我通过更改以下项目解决了我的问题:
//[XmlIgnore] - removed this line and added the next line
[XmlElement("Tasks")]
public TaskCollection TaskCollection { get; set; }
[XmlElement("Task", typeof(UtilitiesTask))]
public List<UtilitiesTask> TaskList { get; set; }