XmlAttributeEventHandler | System.Xml.Serialization (system.xml.dll) serializable delegate |
public delegate void XmlAttributeEventHandler( object sender, XmlAttributeEventArgs e); | |
This declared delegate type is used to
receive event notifications from the XmlSerializer
instance when an unknown attribute is encountered. The
XmlSerializer.UnknownAttribute event is fired
after the XmlSerializer.UnknownNode event. If no
XmlAttributeEventHandler is assigned, any unknown
attributes will be ignored.
|