I have the following XML message and I need to deserialize it
<xs:complexType name="DataType">
<xs:choice>
<xs:element name="Ext_a_Data" type="ExtTest1DataType" />
<xs:element name="Ext_b_Data" type="ExtTest2DataType" />
<xs:element name="Ext_c_Data" type="ExtTest3DataType" />
</xs:choice>
</xs:complexType>
How do I handle this?