XmlElementEventArgs::ObjectBeingDeserialized Property
.NET Framework (current version)
Gets the object the XmlSerializer is deserializing.
Assembly: System.Xml (in System.Xml.dll)
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>
XmlSerializer.UnknownElement Example#1
.NET Framework
Available since 1.1
Available since 1.1
Show: