xmlserializer
Has anyone else experienced slow deserialization in MonoTouch when using the .NET XmlSerializer class?
I have a MonoTouch iOS app in whic开发者_开发技巧h I\'m deserializing a large list of people from a web service. The XML is pretty simple: the root node is a list of people, each person only has 5 pro[详细]
2023-02-19 14:27 分类:问答c# XML serialization
I\'d like to serialize something like this, where there is a header and a body. The first part \"galleryData\" is the header[详细]
2023-02-19 03:24 分类:问答Pseudo readonly property on with serialization
How bad is some开发者_如何学Cthing like: public class Test { private string pKey = null; public string Key {[详细]
2023-02-17 20:39 分类:问答Ignoring properties on derived classes when using .NET's XmlSerializer
I have a base class with a virtual property and a derived type that overrides the virtual property. The type can be serial开发者_如何学Pythonized to XML. What I am trying to do is NOT to persist the L[详细]
2023-02-16 11:10 分类:问答Adding Attribute to an XML node using an XMLSerializer
I\'m new to this site so forgive my newbiness. I\'m working on a big system done in C# and I didn\'t found a way to do exactly what I want in the following situation.[详细]
2023-02-15 22:28 分类:问答Hook in to OnDeserializing for XmlSerializer
Otherwise than pointed out in this post I would like to act just before an XmlSerializer starts deserializing (not when finished deserializing)[详细]
2023-02-15 02:36 分类:问答There is an error in XML document (0, 0) during deserialization
i have the following code to for xml serialization. public class FormSaving { private string major; public string Majorversion[详细]
2023-02-13 15:23 分类:问答Omit a node on XmlSerializer.Serialize
I have a class library provided by a third party, with a type in there called SaveAccount. When I try to serialize this class I get the following xml:[详细]
2023-02-12 22:29 分类:问答Why does Xml Serializer require properties to be writable?
I have some types I want to serialize as xml, but these types have read-only properties like: public List<Effect> Effects {get; private set;}[详细]
2023-02-12 14:02 分类:问答XmlSerializer Deserialize returns empty array
I\'m trying to deserialize the following XML (excerpt): <NSArray> <Song id=\"23507\" type=\"Song\">[详细]
2023-02-12 09:06 分类:问答