Click or drag to resize

XmlDeserializationCallbackEventHandler Delegate

This function is used to call back Deserialization surrogates after finishing deserialization

Namespace: Altaxo.Serialization.Xml
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public delegate void XmlDeserializationCallbackEventHandler(
	IXmlDeserializationInfo info,
	Object documentRoot,
	bool isFinalCall
)

Parameters

info  IXmlDeserializationInfo
The deserialization info from which this call is initiated.
documentRoot  Object
The first element (the root element) in the hierarchy of deserialized elements.
isFinalCall  Boolean
If true, this is the last call of this kind.
See Also