This tag refers to serialization technologies which use XML as a data format.
I want to convert an xml element like this: <asin>B0013FRNKG</asin> to string in …
javascript xml xml-serializationI'm looking for a way with C# which I can serialize a class into XML and add a namespace, but …
c# xml-serialization datacontractserializer xmlserializerI have a XSD schema for some RESTful service. When used in conjunction with xsd.exe tool to generate C# …
c# .net xml-serializationWhat is the best way to take a given PHP object and serialize it as XML? I am looking at …
php xml xml-serializationIs it possible via an attribute of some sort to serialize a string as CDATA using the .Net XmlSerializer?
c# .net xml-serializationHow do you generate an XML file from an XSD file?
c# .net xml xsd xml-serializationI have been able to serialize an IEnumerable this way: [XmlArray("TRANSACTIONS")] [XmlArrayItem("TRANSACTION", typeof(Record))] public IEnumerable<BudgetRecord&…
c# .net xml-serialization xmlserializerI have a serializable class and one of the properties in my class generates a Guid in the getter. The …
c# .net xml-serializationSuppose I have an XML-serializable class called Song: [Serializable] class Song { public string Artist; public string SongTitle; } In order to …
c# xml xml-serializationOnce a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that …
c# xml xml-serialization