XmlElementEventArgs::ObjectBeingDeserialized Property

 

Gets the object the XmlSerializer is deserializing.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

public:
property Object^ ObjectBeingDeserialized {
	Object^ get();
}

Property Value

Type: System::Object^

The object that is being deserialized by the XmlSerializer.

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
Return to top
Show: