[ Team LiB ] Previous Section Next Section

XmlElementEventHandlerSystem.Xml.Serialization (system.xml.dll) serializable delegate 

public delegate void XmlElementEventHandler( object sender, XmlElementEventArgs e);

This declared delegate type is used to receive event notifications from the XmlSerializer instance when an unknown element is encountered. The XmlSerializer.UnknownElement event is fired after the XmlSerializer.UnknownNode event. If no XmlElementEventHandler is assigned, any unknown elements will be ignored.

    [ Team LiB ] Previous Section Next Section