获取 XmlSerializer FormatException 的来源?
我正在使用 XmlSerialzier 反序列化从 WebService 获取的一些 XML 数据。到目前为止,这种方法运行得很好,但自从有些天以来,当序列化程序解析 XML 时,我收到了 FormatException 异常。
抛出异常时是否有机会获取序列化器尝试解析的值/元素/标记名?我在异常详细信息中没有找到任何内容。
感谢和问候
科内利斯
i'm deserializing some XML Data i get from a WebService using the XmlSerialzier. This worked quite good until now, but since some days i get an FormatException while the Serializer parses the XML.
Is there any Chance to get the Value/Element/Tagname the Serialzer tried to parse when the Exeption was thrown? I haven't found anything in the Exception Details.
Thanks and Greetings
Kornelis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果格式异常没有为您提供足够的信息来解决问题,您可以更进一步并调试产生问题的特定代码。 XmlSerializer 的工作原理是在运行时生成一个程序集,该程序集负责序列化/反序列化您想要的类型。可以通过以下方式调试生成的代码(检查链接)。
If the format exception doesn't give you enough information to solve the problem, you can go one step further and debug the specific code that produces the problem. The XmlSerializer works by generating a assembly at runtime which is responsible for serializing/deserializing the type you want. This generated code can be debugged in the following way (check link).