Interface IFinishDeserialization
[Deprecated], Implement this interface to receive the "DeserializationDone" callback after the object is deserialized. To receive this callback you also hav to add your object to the appropriate list by doing the following on the Constructor (SerializationInfo info, StreamingContext context):
FinishDeserialization fd = context.Context as FinishDeserialization;
if (fd!=null) fd.Add(this);
Namespace: CADability
Assembly: CADability.dll
Syntax
public interface IFinishDeserialization
Methods
| Improve this Doc View SourceDeserializationDone(Object[])
Will be called after deserialization is done
Declaration
void DeserializationDone(object[] data)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object[] | data |