反序列化数组总是为元素返回null,但可用于属性
本文关键字:用于 属性 null 返回 数组 元素 反序列化 | 更新日期: 2023-09-27 18:29:10
反序列化部分工作时遇到问题。当我有一个带有属性的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; }
}
我不想麻烦地显示附件类,因为它在作为接收方类的定义方面是相同的。
所有简单的元素都被正确填充,我的数组正在构建中,但里面的所有元素都为空
调试时,我可以看到我的数组有2个收件人项和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>
然后,按照我的方式定义一个单独的类是有意义的,即EmailNotificationRecipient,但不是将receiver作为属性,而是使用fname和lname。
再次感谢@NoIdeaForName:)
正如您所说,您正在进行
[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
检查它的最佳方法是创建一个包含值的类并对其进行序列化,然后查看输出看起来如何类似