反序列化动态/变量内部 XML

发布于 2024-10-15 02:48:20 字数 390 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的那么颓废 2024-10-22 02:48:20

您可以在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文