DataContractSerializer - 忽略 XML 声明
如何让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?