I just noticed a weird behavior in binary serialization: when I deserialize a dictionary in my class and try to add something to it immediately, I get an error because it's not fully initialized:
[Serializable]
class Foo : ISerializable
{
public Dictionary<int, string> Dict { get; private set; }
public Foo()
{
Dict = new Dictionary<int, string>();
}
public Foo(SerializationInfo info, StreamingContext context)
{
Dict = (Dictionary<int, string>)info.GetValue("Dict", typeof(Dictionary<int, string>));
Dict.Add(99, "test"); // Error here
}
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
info.AddValue("Dict", Dict);
}
}
On the line where I add data to the dictionary, I get a NullReferenceException, but the Dict property is not null: it is instantiated, but not initialized (all its fields are 0 or null). I suspect it has only been created with FormatterServices.GetUninitializedObject, but not actually deserialized yet.
I understand that at this point, perhaps it's not supposed to be fully initialized. So I tried another approach, by implementing the IDeserializationCallback interface. MSDN says:
Implement the current interface as part of support for a method that is called when deserialization of the object graph is complete.
If an object needs to execute code on its child objects, it can delay this action, implement IDeserializationCallback, and execute the code only when it is called back on this interface
So it seems to be exactly what I need, and I expected my dictionary to be be fully initialized when OnDeserialization is called... But I get the same error!
[Serializable]
class Foo : IDeserializationCallback
{
public Dictionary<int, string> Dict { get; private set; }
public Foo()
{
Dict = new Dictionary<int, string>();
}
public void OnDeserialization(object sender)
{
Dict.Add(99, "test"); // Error here
}
}
Since the IDeserializationCallback is designed to execute code on child objects, I would expect the child objects to be fully initialized at this point. Note that if I call OnDeserialize manually on the dictionary, it works fine, but somehow I don't think I'm supposed to do that...
Is this behavior normal? Can anyone explain what's going on here?
[OnDeserialized]attribute doesn't help. Moreover, I have checked .NET source code, and based on them everything should be initialized, when either of[OnDeserialized]orIDeserializationCallback.OnDeserializationis called – Alexander Yezutov Dec 9 '11 at 13:07