How to deserialize element with list of attributes in C#(如何在 C# 中使用属性列表反序列化元素)
问题描述
您好,我有以下 Xml 需要反序列化:
Hi I have the following Xml to deserialize:
<RootNode>
<Item
Name="Bill"
Age="34"
Job="Lorry Driver"
Married="Yes" />
<Item
FavouriteColour="Blue"
Age="12"
<Item
Job="Librarian"
/>
</RootNote>
当我不知道键名或会有多少属性时,如何使用属性键值对列表反序列化 Item 元素?
How can I deserialize the Item element with a list of attribute key value pairs when I dont know the key names or how many attributes there will be?
推荐答案
您可以使用 XmlAnyAttribute
属性指定任意属性将被序列化和反序列化为 XmlAttribute []
属性或使用 XmlSerializer
时的字段.
You can use the XmlAnyAttribute
attribute to specify that arbitrary attributes will be serialized and deserialized into an XmlAttribute []
property or field when using XmlSerializer
.
例如,如果要将属性表示为 Dictionary
,则可以定义 Item
和 RootNode
类如下,使用代理 XmlAttribute[]
属性将字典与所需的 XmlAttribute
数组相互转换:
For instance, if you want to represent your attributes as a Dictionary<string, string>
, you could define your Item
and RootNode
classes as follows, using a proxy XmlAttribute[]
property to convert the dictionary from and to the required XmlAttribute
array:
public class Item
{
[XmlIgnore]
public Dictionary<string, string> Attributes { get; set; }
[XmlAnyAttribute]
public XmlAttribute[] XmlAttributes
{
get
{
if (Attributes == null)
return null;
var doc = new XmlDocument();
return Attributes.Select(p => { var a = doc.CreateAttribute(p.Key); a.Value = p.Value; return a; }).ToArray();
}
set
{
if (value == null)
Attributes = null;
else
Attributes = value.ToDictionary(a => a.Name, a => a.Value);
}
}
}
public class RootNode
{
[XmlElement("Item")]
public List<Item> Items { get; set; }
}
原型小提琴.
这篇关于如何在 C# 中使用属性列表反序列化元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C# 中使用属性列表反序列化元素


- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 使用 rss + c# 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01