ISerializationCallbacks<T> Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Hooks for stages in serialization and copying.
public interface ISerializationCallbacks<T>
type ISerializationCallbacks<'T> = interface
Public Interface ISerializationCallbacks(Of T)
Type Parameters
- T
The underlying value type.
Methods
OnCopied(T, T) |
Called when a value has been copied. |
OnCopying(T, T) |
Called when copying. |
OnDeserialized(T) |
Called when a value has been deserialized. |
OnDeserializing(T) |
Called when deserializing. |
OnSerialized(T) |
Called when a value has been serialized. |
OnSerializing(T) |
Called when serializing. |