System.Runtime.Serialization (mscorlib.dll) | interface |
This interface implements a
notification
triggered when deserialization of an object is completed. Specify
callback functionality with the OnDeserialization(
) method. This class is useful for restoring members that
can be computed after deserialization, instead of serializing them
and using more storage resources.
public interface IDeserializationCallback {
// Public Instance Methods
public void OnDeserialization(object sender);
}
Implemented By
System.Collections.Hashtable,
System.Collections.Specialized.NameObjectCollectionBase,
System.Globalization.{CompareInfo,
TextInfo},
System.Reflection.AssemblyName
|