反序列化动态/变量内部 XML
我有一个 XML 配置文件:
<Config>
<FixedElement1/>
<FixedElement2/>
<UserDefinedElement>
<UnknownUserElement1/>
<UnknownUserElement2/>
</UserDefinedElement>
</Config>
我对固定元素进行序列化和反序列化。但我想读取未知的用户定义元素。
我该怎么做呢?
我正在尝试这样做,但它没有给我带来任何回报 [Xml文本] 公共字符串用户定义元素{获取;放;感谢
您的回答。
I have an XML configuration file:
<Config>
<FixedElement1/>
<FixedElement2/>
<UserDefinedElement>
<UnknownUserElement1/>
<UnknownUserElement2/>
</UserDefinedElement>
</Config>
I have serialization and deserialization working on the fixed elements. But I want to read user defined elements that are not known.
How can I do it?
I am trying to do this way but it returns me nothing
[XmlText]
public String UserDefinedElement{ get; set; }
Thanks for the answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 app.config 中通过定义可反序列化为对象集合的自定义配置部分来实现此目的。可以在这里找到实现此目标的良好指南:http://devlicio.us/blogs/derik_whittaker/archive/2006/11/13/app-config-and-custom-configuration-sections.aspx
如果您希望使用自定义配置您仍然需要指定已序列化的对象。如果您正在实现 ISerialized,那么您可以使用反射来确定对象类型并在运行时创建。
You can achieve this in the app.config by defining custom config sections which can be deserialised into an object collection. A good guide on achieving this can be found here: http://devlicio.us/blogs/derik_whittaker/archive/2006/11/13/app-config-and-custom-configuration-sections.aspx
If you are wishing to use your custom config you will still need to specify the object which has been serialized. If you are implementing ISerializable then you can use reflection to determine the object type and create at run-time.