Set DataContract's DataMember attributes during runtime? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:06:26Z http://stackoverflow.com/feeds/question/713543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/713543/set-datacontracts-datamember-attributes-during-runtime 1 Set DataContract's DataMember attributes during runtime? Jörg Battermann 2009-04-03T11:23:40Z 2009-04-03T11:37:16Z <p>Hello there,</p> <p>is it possible to dynamically set the datacontract's datamember attributes during runtime? Basically what I need is to read in serialized instances of a class which contained the DataMemeber attributes on two properties at the time of serialization, but the current 'version' does not longer have them but I need to migrate the old data set in these properties over to the new handling... sooo what I kind of need is to let the datacontract deserializer read the data including these 'old' values, and re-serialize them with the new config (as these properties' data is now stored and handled entirely differently).</p> <p>Is this possible?</p> <p>Cheers &amp; thanks. -Jörg</p> http://stackoverflow.com/questions/713543/set-datacontracts-datamember-attributes-during-runtime/713574#713574 0 Answer by Marc Gravell for Set DataContract's DataMember attributes during runtime? Marc Gravell 2009-04-03T11:37:16Z 2009-04-03T11:37:16Z <p>You can specify types/known types - but not AFAIK member information. <code>XmlSerializer</code> is a bit more forgiving here... is there a chance the old types used xml attributes? (rather than data-contract attributes).</p> <p>The other option is to provide an <code>IDataContractSurrogate</code> - but that isn't trivial.</p> <p>Is there any chance you can decorate the class with the old attributes <em>and</em> the attributes (etc) for whatever new mechanism you're employing?</p> <p>If the data is simple (i.e. only one or two types, in a simple relationship), you could use a <strong>parallel</strong> set of classes to deserialize, then copy the data (property-to-property etc) into the new data structure, and re-serialize. This gets harder as the complexity of the model increases.</p>