Tagged Questions
The ideserializationcallback tag has no wiki summary.
8
votes
3answers
1k views
Hashtable.OnDeserialization
I have a class that maintans a reference to a Hashtable and serializes/deserializes that Hashtable. After the call to SerializationInfo.GetValue, the Hashtable is not fully deserialized because the ...
3
votes
2answers
749 views
IDeserializationCallback vs OnDeserializedAttribute
As far as I understand, the IDeserializationCallback interface and the OnDeserialized event can both be used when an object needs to perform some task after being deserialized.
...
2
votes
2answers
39 views
Strange deserialization error, child objects are not fully deserialized
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:
...
1
vote
1answer
121 views
Can OnDeserializedAttribute be used instead of IDeserializationCallback interface?
As MSDN states here, it can.
But I've spent 2 hours digging mscorlib code, because in some cases the BinaryFormatter called my method marked with OnDeserialized BEFORE deserialization constructor. ...
0
votes
1answer
57 views
IDeserializationCallback.OnDeserialization(Object sender): Is this syntactic sugar?
From here, an example of using the IDeserializationCallback interface.
void IDeserializationCallback.OnDeserialization(Object sender)
{
// After being deserialized, initialize the m_area field
...