Web Service中的HashTable给出“类型不支持”错误

时间:2012-11-05 17:11:50

标签: asp.net web-services hashtable

我尝试在我的webservice中使用HashTable。我的一些webservice方法准备一些数据并将它们添加到HashTable,然后将其返回给客户端。所以当我运行我的webservice时会出现这个错误:

The type system.collections.hashtable is not supported because it implements IDictionary.

有什么问题?我可以在webservice中使用HashTable,不是吗?

1 个答案:

答案 0 :(得分:1)

您无法从Web Service返回哈希表,因为它无法序列化。

您可以在返回之前将数据转换为简单的列表或数组吗?

或者:http://tiwaripradeep.blogspot.com/2007/06/type-systemcollectionshashtable-is-not.html