This tag refers to serialization technologies which use XML as a data format.
I have an XML schema .xsd and generate with xsd.exe tool my file with all the c# classes. If …
c# xsd xml-serialization xsd.exeI have a c# class that has 20+ string properties. I set about a fourth of those to an actual value. …
c# .net xml-serialization xml-nilI'm serializing an object in a C# VS2003 / .Net 1.1 application. I need it serialized without the processing instruction, however. The …
c# .net xml-serialization visual-studio-2003What's a good way to serialize a Delphi object tree to XML--using RTTI and not custom code? I would have …
xml delphi serialization xml-serialization rttiI'm doing some experiments with Microsoft Dynamics CRM. You interact with it through web services and I have added a …
c# .net performance xml-serialization soaphttpclientprotocolI am using xml-serialization in my project to serialize and deserialize objects based on an xml schema. I used the …
c# .net xsd xml-serializationI have code using XmlSerializer to serialize/deserialize a data structure for persistance. I've read and heard in several places …
c# xml xml-serializationI have a class that I need to do some custom XML output from, thus I implement the IXmlSerializable interface. …
c# .net-3.5 xml-serialization ixmlserializableOkay this one DID it! Thanks to all of you! public class Result { public String htmlEscaped { set; get; } [XmlIgnore] public …
c# html xml-serialization cdataI have the following XML: <Envelope> <Body> <RESULT> <SUCCESS>TRUE</SUCCESS&…
c# asp.net xml xml-serialization xml-deserialization