错误:“反序列化器不知道映射到此合约的任何类型”?

发布于 2024-09-25 01:56:47 字数 546 浏览 0 评论 0原文

我有一个标记为 [Serializable] 的类 Foo 并实现 ISerialized。我正在尝试通过 DataContractSerializer 对其进行序列化。在 GetObjectData 中我这样做:

info.AddValue("Test", new[] { 1,2,3});

它失败了:

元素“:Test”包含“http://schemas.microsoft.com/2003/10/Serialization/Arrays:ArrayOfint”数据协定的数据。反序列化器不知道映射到此合约的任何类型。将与“ArrayOfint”对应的类型添加到已知类型列表 - 例如,通过使用 KnownTypeAttribute 属性或将其添加到传递给 DataContractSerializer 的已知类型列表。

我尝试将 knownTypes 参数传递给 DataContractSerializer 构造函数 - 没有帮助。

I have a class Foo marked [Serializable] and implementing ISerializable. I'm trying to serialize it via DataContractSerializer. In GetObjectData I do this:

info.AddValue("Test", new[] { 1,2,3});

It fails with:

Element ':Test' contains data of the 'http://schemas.microsoft.com/2003/10/Serialization/Arrays:ArrayOfint' data contract. The deserializer has no knowledge of any type that maps to this contract. Add the type corresponding to 'ArrayOfint' to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding it to the list of known types passed to DataContractSerializer.

I tried passing a knownTypes arg to the DataContractSerializer constructor - didn't help.

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

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

发布评论

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

评论(1

你列表最软的妹 2024-10-02 01:56:47

knownTypes 参数传递给 DataContractSerializer 构造函数不会有帮助。相反,将 [KnownType(typeof(int[]))] 添加到 Foo 类本身。

Passing a knownTypes arg to the DataContractSerializer constructor will not help. Instead, add [KnownType(typeof(int[]))] to class Foo itself.

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