This tag refers to serialization technologies which use XML as a data format.
I have a problem with CDATA deserialization using standard .Net XmlSerializer. Update: I get XML from external system and I …
c# .net xml-serialization cdataI am serializing List of objects List<TestObject> , and XmlSerializer generates <ArrayOfTestObject> attribute, I want rename …
c# xml xml-serializationFrom windows event viewer I can get the following xml structure: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/…
c# .net windows xml-serialization xmlserializerI'm creating a method to serialize a file using this code: public void Save(Object file, Type type, String path) { // …
c# xml serialization xml-serialization streamwriterI've been reading lately about serialization. I've read that when I use XmlSerialization I cannot serialize object graphs. What is …
.net serialization xml-serializationI need to serialize an Object to XML and back. The XML is fix and I can't change it. I …
c# xml list xml-serializationMy Python application currently uses the python-memcached API to set and get objects in memcached. This API uses Python's native …
python serialization xml-serialization memcached protocol-buffersI am marshalling objects to XML file using encoding "UTF-8". It generates file successfully. But when I try to unmarshal …
java xml-serialization jaxb unmarshallingI have this extension method public static string SerializeObject<T>(this T value) { var serializer = new XmlSerializer(typeof(…
c# xml-serialization xmlwriterIn .Net/C# Application, I have data structures which have references to each other. When I serialize them, .Net Serializes …
c# .net xml xml-serialization