反序列化具有未知子节点的 XML 节点
本文关键字:XML 节点 子节点 未知 反序列化 | 更新日期: 2023-09-27 18:36:51
我有一些看起来像这样的xml:
<?xml version="1.0" encoding="UTF-8"?>
<response>
<video key="8bJ8OyXI">
<custom>
<legacyID>50898311001</legacyID>
</custom>
<date>1258497567</date>
<description>some description</description>
<duration>486.20</duration>
<md5>bc89fde37ef103db26b8a9d98065d006</md5>
<mediatype>video</mediatype>
<size>99416259</size>
<sourcetype>file</sourcetype>
<status>ready</status>
<views>0</views>
</video>
</response>
我正在使用XmlSerializer
将xml序列化为类对象,如果可能的话,我更愿意坚持使用它,因为其他一切都很好。节点自定义只是添加到视频中的自定义元数据,几乎任何东西都可能最终出现在那里(只有字符串,只是一个名称和值)。我使用 xsd.exe 从我的 xml 生成类对象,它为 <custom>
标记生成了一个唯一的类,只有一个 ulong 属性用于 legacyID 值。问题是,可能存在任意数量的值,我不能也不需要考虑它们(但我以后可能需要读取特定值)。
是否可以在我的类中设置 Video.Custom 属性,以便序列化程序可以将这些值反序列化为类似Dictionary<string, string>
?我不需要这些特定值的类型信息,保存节点名称 + 值对于我的目的来说绰绰有余。
你可以处理UnknownElement
事件,并将custom
元素反序列化到字典中
serializer.UnknownElement += (s, e) =>
{
if (e.Element.LocalName == "custom" && e.ObjectBeingDeserialized is Video)
{
Video video = (Video)e.ObjectBeingDeserialized;
if (video.Custom == null)
{
video.Custom = new Dictionary<string, string>();
}
foreach (XmlElement element in e.Element.OfType<XmlElement>())
{
XmlText text = (XmlText)element.FirstChild;
video.Custom.Add(element.LocalName, text.Value);
}
}
};