System.Runtime.Serialization.IDeserializationCallback Interface

Assembly: Mscorlib.dll
Namespace: System.Runtime.Serialization
Summary
Indicates that a class is to be notified when deserialization of the entire object graph has been completed.
C# Syntax:
public interface IDeserializationCallback
Remarks


Notes to implementors: 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.
See also:
System.Runtime.Serialization Namespace See also:
MSDN: eventsdelegates | MSDN: serialization

System.Runtime.Serialization.IDeserializationCallback Member List:

Public Methods
OnDeserialization Runs when the entire object graph has been deserialized.

System.Runtime.Serialization.IDeserializationCallback Member Details

Method: OnDeserialization(
   object sender
)
Summary
Runs when the entire object graph has been deserialized.
C# Syntax:
void OnDeserialization(
   object sender
);
Parameters:

sender

The object that initiated the callback. The functionality for the this parameter is not currently implemented.

See also:
MSDN: eventsdelegates | MSDN: serialization

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.