Since we've moved to using a DataContractSerializer to serialize and deserialize the XML data we will receive, we must add the DataContract and DataMember attributes to the model classes to model the data given in the XML document. This includes adding an "Order = (i)" to the DataMember attribute, where (i) is what order the property shows up in the corresponding XML document's node structure.
Since we've moved to using a DataContractSerializer to serialize and deserialize the XML data we will receive, we must add the DataContract and DataMember attributes to the model classes to model the data given in the XML document. This includes adding an "Order = (i)" to the DataMember attribute, where (i) is what order the property shows up in the corresponding XML document's node structure.
Pass criterial:: Successfully deserialize object.