反序列化部分工作时遇到问题。当我有一个带有属性的xml节点时,所有的属性值都被正确地加载到我的类中,但是当我使用元素时,它只返回null。
我将以下内容存储在xml文件中:
<?xml version="1.0" encoding="utf-8"?>
<email>
<from>admin@company.com</from>
<recipients>
<recipient>user1@company.com</recipient>
<recipient>user2@company.com</recipient>
</recipients>
<subject>Test subject</subject>
<body>Test body</body>
<attachments>
<attachment>c:\test.txt</attachment>
<attachment>c:\test1.txt</attachment>
<attachment>c:\test2.txt</attachment>
</attachments>
</email>
我的主要课程定义如下:
[Serializable]
[XmlRoot("email")]
public class EmailNotification
{
[XmlElement("from")]
public string From { get; set; }
[XmlElement("subject")]
public string Subject { get; set; }
[XmlElement("body")]
public string Body { get; set; }
[XmlArray("recipients")]
[XmlArrayItem("recipient")]
public List<EmailNotificationRecipient> Recipients { get; set; }
[XmlArray("attachments")]
[XmlArrayItem("attachment")]
public List<EmailNotificationAttachment> Attachments { get; set; }
public EmailNotification()
{
this.Attachments = new List<EmailNotificationAttachment>();
this.Recipients = new List<EmailNotificationRecipient>();
}
}
这是我的收件人类:
[Serializable]
public class EmailNotificationRecipient
{
public EmailNotificationRecipient()
{
}
[XmlElement("recipient")]
public string Recipient { get; set; }
}
我不打算显示附件类,因为它在定义为收件人类时是相同的。
所有简单元素都正确填充,我的数组正在构建,但其中的所有元素都为null。
调试时,我可以看到我的数组有两个收件人项目和3个附件项目但是当我检查里面的值时,每个数组项都是null。
我还添加了一个构造函数EmailNotificationRecipient类并在其上设置断点,并且每次为每个已定义的收件人点击我的断点。
通过以上2点,它会让你相信我的类定义一切正常,或者它无法找到正确数量的元素,但如上所述,我的数组中的所有对象都设置为null,即使创建了正确的对象数。
最初,我使用类型定义了XmlArrayItem
:
[XmlArrayItem("recipient", typeof(EmailNotificationRecipient))]
public List<EmailNotificationRecipient> Recipients { get; set; }
我删除它以查看它是否会产生任何影响,但无济于事。
我错过了什么?这让我的疯狂!!!!
感谢。
更新
请参阅以下@NoIdeaForName的答案。
我目前定义它的方式意味着为了让它返回一个值,我的xml应该看起来像:
<recipients>
<recipient><recipient></recipient></recipient>
</recipients>
因为我的数组期望一个类接收者,实际上我在每个接收者节点中的所有内容都是一个字符串,所以该数组应该定义如下:
[XmlArray("recipients")]
[XmlArrayItem("recipient")]
public List<string> Recipients { get; set; }
现在另一方面,如果我的xml中的每个收件人都是这样定义的:
<recipients>
<recipient>
<fname><fname>
<lname><lname>
</recipient>
</recipients>
那么按照我的方式定义一个单独的类是有意义的,即EmailNoticiationRecipient,但不是将收件人作为属性,而是使用fname和lname。
再次感谢@NoIdeaForName:)
答案 0 :(得分:1)
正如你所说的那样
[XmlArray("attachments")]
[XmlArrayItem("attachment")]
public List<EmailNotificationAttachment> Attachments { get; set; }
EmailNotification
班级中的和Attachments
班级
[Serializable]
public class EmailNotificationRecipient
{
public EmailNotificationRecipient()
{
}
[XmlElement("recipient")]
public string Recipient { get; set; }
}
这意味着您的xml应该如下所示:
<recipients>
<recipient><recipient>user1@company.com</recipient></recipient>
<recipient><recipient>user2@company.com</recipient></recipient>
</recipients>
因为在每个recipient
标记中都有一个类,并且在每个recipient
类中都应该是属性名称(标记为)recipient
检查它的最佳方法是创建一个带有值的类并将它们序列化并查看输出结果如何