3

在网页中,我将 a 存储DictionaryViewState

Dictionary<string, string> items = new Dictionary<string, string>();
ViewState["items"] = items;

它工作得很好。但是,由于某些原因,我想使用自己的类而不是Dictionary直接使用:

class MyDictionary : Dictionary<string, string> 
{
   ... 
}
MyDictionary items = new MyDictionary();
ViewState["items"] = items;

它没有按预期工作。ASP.NET 抱怨这个事实

MyDictionary 未标记为可序列化

没关系,因为没有继承类属性。所以我改变了我的代码:

[Serializable]
class MyDictionary : Dictionary<string, string> { ... }

但如果我这样做,我会收到另一条错误消息,这一次是在页面回发之后:

此页面的状态信息无效,可能已损坏。
System.Web.UI.ObjectStateFormatter.Deserialize(流输入流)

如果 viewstate 可以序列化 a Dictionary,为什么它不适用于从它继承的类?如何使这项工作?

4

1 回答 1

4

你需要一个反序列化构造函数到你的类。

class MyDictionary : Dictionary<string, string> 
{
   public MyDictionary (){ }
   protected MyDictionary (SerializationInfo info, 
                           StreamingContext ctx) : base(info, ctx) { }
}

如果您查看字典类,它需要反序列化。

protected Dictionary(SerializationInfo info, StreamingContext context);

用测试页试了一下,效果很好。

于 2012-08-29T09:28:58.753 回答