public class XmlAttributeEventArgs : EventArgs
|
The XmlSerializer.UnknownAttribute event can occur only when you call the XmlSerializer.Deserialize method.
Group
from a file named UnknownAttributes.xml. Whenever an element is found in the file that has no corresponding member in the class, the XmlSerializer.UnknownAttribute event occurs. To try the example, paste the XML code below into a file named UnknownAttributes.xml.<?xml version="1.0" encoding="utf-8"?> <Group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" GroupType = 'Technical' GroupNumber = '42' GroupBase = 'Red'> <GroupName>MyGroup</GroupName> </Group>
using System; using System.IO; using System.Xml.Serialization; using System.Xml; using System.Xml.Schema; public class Group{ public string GroupName; } public class Test{ static void Main(){ Test t = new Test(); // Deserialize the file containing unknown elements. t.DeserializeObject("UnknownAttributes.xml"); } private void Serializer_UnknownAttribute(object sender, XmlAttributeEventArgs e){ Console.WriteLine("Unknown Attribute"); Console.WriteLine("\t" + e.Attr.Name + " " + e.Attr.InnerXml); Console.WriteLine("\t LineNumber: " + e.LineNumber); Console.WriteLine("\t LinePosition: " + e.LinePosition); Group x = (Group) e.ObjectBeingDeserialized; Console.WriteLine (x.GroupName); Console.WriteLine (sender.ToString()); } private void DeserializeObject(string filename){ XmlSerializer ser = new XmlSerializer(typeof(Group)); // Add a delegate to handle unknown element events. ser.UnknownAttribute+=new XmlAttributeEventHandler(Serializer_UnknownAttribute); // A FileStream is needed to read the XML document. FileStream fs = new FileStream(filename, FileMode.Open); Group g = (Group) ser.Deserialize(fs); fs.Close(); } }
Attr | Read-only Gets an object that represents the unknown XML attribute. |
LineNumber | Read-only Gets the line number of the unknown XML attribute. |
LinePosition | Read-only Gets the position in the line of the unknown XML attribute. |
ObjectBeingDeserialized | Read-only Gets the object being deserialized. |
Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
GetHashCode (inherited from System.Object) |
See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. |
GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public XmlAttribute Attr {get;}
|
Group
from a file named UnknownAttributes.xml. Whenever an element is found in the file that has no corresponding member in the class, the XmlSerializer.UnknownAttribute event occurs. To try the example, paste the XML code below into a file named UnknownAttributes.xml.<?xml version="1.0" encoding="utf-8"?> <Group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" GroupType = 'Technical' GroupNumber = '42' GroupBase = 'Red'> <GroupName>MyGroup</GroupName> </Group>
using System; using System.IO; using System.Xml.Serialization; using System.Xml; using System.Xml.Schema; public class Group{ public string GroupName; } public class Test{ static void Main(){ Test t = new Test(); // Deserialize the file containing unknown elements. t.DeserializeObject("UnknownAttributes.xml"); } private void Serializer_UnknownAttribute(object sender, XmlAttributeEventArgs e){ Console.WriteLine("Unknown Attribute"); Console.WriteLine("\t" + e.Attr.Name + " " + e.Attr.InnerXml); Console.WriteLine("\t LineNumber: " + e.LineNumber); Console.WriteLine("\t LinePosition: " + e.LinePosition); Group x = (Group) e.ObjectBeingDeserialized; Console.WriteLine (x.GroupName); Console.WriteLine (sender.ToString()); } private void DeserializeObject(string filename){ XmlSerializer ser = new XmlSerializer(typeof(Group)); // Add a delegate to handle unknown element events. ser.UnknownAttribute+=new XmlAttributeEventHandler(Serializer_UnknownAttribute); // A FileStream is needed to read the XML document. FileStream fs = new FileStream(filename, FileMode.Open); Group g = (Group) ser.Deserialize(fs); fs.Close(); } }
public int LineNumber {get;}
|
Group
from a file named UnknownAttributes.xml. Whenever an element is found in the file that has no corresponding member in the class, the XmlSerializer.UnknownAttribute event occurs. To try the example, paste the XML code below into a file named UnknownAttributes.xml.<?xml version="1.0" encoding="utf-8"?> <Group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" GroupType = 'Technical' GroupNumber = '42' GroupBase = 'Red'> <GroupName>MyGroup</GroupName> </Group>
using System; using System.IO; using System.Xml.Serialization; using System.Xml; using System.Xml.Schema; public class Group{ public string GroupName; } public class Test{ static void Main(){ Test t = new Test(); // Deserialize the file containing unknown elements. t.DeserializeObject("UnknownAttributes.xml"); } private void Serializer_UnknownAttribute(object sender, XmlAttributeEventArgs e){ Console.WriteLine("Unknown Attribute"); Console.WriteLine("\t" + e.Attr.Name + " " + e.Attr.InnerXml); Console.WriteLine("\t LineNumber: " + e.LineNumber); Console.WriteLine("\t LinePosition: " + e.LinePosition); Group x = (Group) e.ObjectBeingDeserialized; Console.WriteLine (x.GroupName); Console.WriteLine (sender.ToString()); } private void DeserializeObject(string filename){ XmlSerializer ser = new XmlSerializer(typeof(Group)); // Add a delegate to handle unknown element events. ser.UnknownAttribute+=new XmlAttributeEventHandler(Serializer_UnknownAttribute); // A FileStream is needed to read the XML document. FileStream fs = new FileStream(filename, FileMode.Open); Group g = (Group) ser.Deserialize(fs); fs.Close(); } }
public int LinePosition {get;}
|
Group
from a file named UnknownAttributes.xml. Whenever an element is found in the file that has no corresponding member in the class, the XmlSerializer.UnknownAttribute event occurs. To try the example, paste the XML code below into a file named UnknownAttributes.xml.<?xml version="1.0" encoding="utf-8"?> <Group xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" GroupType = 'Technical' GroupNumber = '42' GroupBase = 'Red'> <GroupName>MyGroup</GroupName> </Group>
using System; using System.IO; using System.Xml.Serialization; using System.Xml; using System.Xml.Schema; public class Group{ public string GroupName; } public class Test{ static void Main(){ Test t = new Test(); // Deserialize the file containing unknown elements. t.DeserializeObject("UnknownAttributes.xml"); } private void Serializer_UnknownAttribute(object sender, XmlAttributeEventArgs e){ Console.WriteLine("Unknown Attribute"); Console.WriteLine("\t" + e.Attr.Name + " " + e.Attr.InnerXml); Console.WriteLine("\t LineNumber: " + e.LineNumber); Console.WriteLine("\t LinePosition: " + e.LinePosition); Group x = (Group) e.ObjectBeingDeserialized; Console.WriteLine (x.GroupName); Console.WriteLine (sender.ToString()); } private void DeserializeObject(string filename){ XmlSerializer ser = new XmlSerializer(typeof(Group)); // Add a delegate to handle unknown element events. ser.UnknownAttribute+=new XmlAttributeEventHandler(Serializer_UnknownAttribute); // A FileStream is needed to read the XML document. FileStream fs = new FileStream(filename, FileMode.Open); Group g = (Group) ser.Deserialize(fs); fs.Close(); } }
public object ObjectBeingDeserialized {get;}
|
protected void serializer_UnknownAttribute( object sender, XmlAttributeEventArgs e) { System.Xml.XmlAttribute attr = e.Attr; Console.WriteLine("Unknown Attribute Name and Value:" + attr.Name + "='" + attr.Value + "'"); Object x = e.ObjectBeingDeserialized; Console.WriteLine("ObjectBeingDeserialized: " + x.ToString()); }
~XmlAttributeEventArgs(); |
public virtual int GetHashCode(); |
public Type GetType(); |
protected object MemberwiseClone(); |
public virtual string ToString(); |