XmlElementEventArgs Class
Provides data for the UnknownElement event.
Assembly: System.Xml (in System.Xml.dll)
| Name | Description | |
|---|---|---|
![]() | Element | Gets the object that represents the unknown XML element. |
![]() | ExpectedElements | Gets a comma-delimited list of XML element names expected to be in an XML document instance. |
![]() | LineNumber | Gets the line number where the unknown element was encountered if the XML reader is an XmlTextReader. |
![]() | LinePosition | Gets the place in the line where the unknown element occurs if the XML reader is an XmlTextReader. |
![]() | ObjectBeingDeserialized | Gets the object the XmlSerializer is deserializing. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
For more information about handling events, see NIB: Events and Delegates and NIB: Raising an Event.
The UnknownElement event occurs only when you call the Deserialize method.
The following example deserializes a class named Group from a file named UnknownElements.xml. Whenever an element is found in the file that has no corresponding member in the class, the UnknownElement event occurs. To try the example, paste the following XML code into a file named UnknownElements.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"> <GroupName>MyGroup</GroupName> <GroupSize>Large</GroupSize> <GroupNumber>444</GroupNumber> <GroupBase>West</GroupBase> </Group>
Imports System Imports System.IO Imports System.Xml.Serialization Imports System.Xml Imports System.Xml.Schema Imports Microsoft.VisualBasic Public Class Group Public GroupName As String End Class Public Class Test Shared Sub Main() Dim t As Test = new Test() ' Deserialize the file containing unknown elements. t.DeserializeObject("UnknownElements.xml") End Sub Private Sub Serializer_UnknownElement _ (sender As Object , e As XmlElementEventArgs) Console.WriteLine("Unknown Element") Console.WriteLine(ControlChars.Tab & e.Element.Name + " " & e.Element.InnerXml) Console.WriteLine(ControlChars.Tab & e.LineNumber & ":" & e.LineNumber) Console.WriteLine(ControlChars.Tab & e.LinePosition & ":" & e.LinePosition) Dim x As Group = CType( e.ObjectBeingDeserialized, Group) Console.WriteLine (x.GroupName) Console.WriteLine (sender.ToString()) End Sub Private Sub DeserializeObject(filename As String) Dim ser As XmlSerializer = new XmlSerializer(GetType(Group)) ' Add a delegate to handle unknown element events. AddHandler ser.UnknownElement, _ AddressOf Serializer_UnknownElement ' A FileStream is needed to read the XML document. Dim fs As FileStream = new FileStream(filename, FileMode.Open) Dim g As Group = CType(ser.Deserialize(fs),Group) fs.Close() End Sub End Class
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


