DataContractSerializer - 忽略 XML 声明

发布于 2024-10-10 00:58:02 字数 92 浏览 3 评论 0原文

如何让 DataContractSerializer 忽略我想要反序列化的 xml 中的 xml 声明?

我想避免从流中读取所有字节并从字符串中删除声明。

How can I get the DataContractSerializer to ignore the xml declaration in xml I want to deserialize?

I want to avoid reading all bytes from stream and removing the declaration from the string.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

三人与歌 2024-10-17 00:58:02

DataContractSerializer 不会序列化 XML 声明,因为您要反序列化的类上不会有它的属性。

无论如何 - 它需要读取整个文件,因此声明也将被读取。

你为什么要像这样删除它?

The DataContractSerializer will not serialize the XML declaration, as you do will not have a property for it on the class you are deserializing to.

Regardless - it needs to read the whole file, so the declaration will be read as well.

Why are you trying to remove it like this?

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