This tag refers to serialization technologies which use XML as a data format.
I have some web methods that return my objects back as serialized XML. It is only serializing the NHibernate-mapped properties …
c# web-services nhibernate xml-serialization proxy-classesI have decided to use Simple XML serialization and was stucked with basic problem. I am trying to serialize java.…
java xml-serialization simple-frameworkI have a object {System.Collections.Generic.List<object>} that contains 1000 object {DynamicData} inside of it, each one …
c# xml xml-serialization xmlserializer dynamicobjectI have been struggling with outputting a custom root xml element when returning a list of objects in my WebAPI …
c# asp.net xml-serialization asp.net-web-api netdatacontractserializerIs it possible that DataContractSerializer wrongly deserializes an object if the fields are not in the "correct" (whatever that means) …
c# .net serialization xml-serialization datacontractserializerI have a class which should be serialized and deserialzed. But every time after deserilization I need to call a …
c# xml serialization xml-serialization xmlserializerI've got a class which uses an XmlSerializer in its Read/WriteXml methods. The Serializer is currently private readonly. public …
c# static xml-serialization instanceI've found numerous solutions here at SO and elsewere that deal with deep clone of object via serialization/deserialization (into …
c# xml-serialization clone datacontractserializerIn my web method, I get an object of some third party C# entity class. The entity class is nothing …
serialization .net-4.0 xml-serialization linq-to-xml datacontractserializerI have a very long, very varied XML file that I am attempting to store portions of into a database. …
c# .net xml-parsing xml-serialization xml-deserialization