2.2.5.2.8 Adapted Properties

This section describes how to serialize adapted properties (see section 2.2.5.3.4.1).

XML Element: <Props>

XML Contents: Results of serializing adapted properties of the Complex Object. Properties can be serialized in any order. Property names MUST be serialized using the attribute described in section 2.2.5.3.1.

Example:

 <!-- serialization of an "point" object that has "X", "Y" and "IsEmpty" properties -->
 <Obj RefId="RefId-0">
   <TN RefId="RefId-0">
     <T>System.Drawing.Point</T>
     <T>System.ValueType</T>
     <T>System.Object</T>
   </TN>
   <ToString>{X=10,Y=20}</ToString>
   <Props>
     <B N="IsEmpty">false</B>
     <I32 N="X">10</I32>
     <I32 N="Y">20</I32>
   </Props>
 </Obj>