18
votes
18answers
8k views
.NET XML serialization gotchas?
I've run into a few gotchas when doing C# XML serialization
that I thought I'd share:
You can't serialize items that are read-only (like KeyValuePairs)
You can't serialize a generic dictionary. …
17
votes
2answers
3k views
Proper way to implement IXmlSerializable?
Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the next …
10
votes
3answers
4k views
Why XML-Serializable class need a parameterless constructor
I'm writing code to do Xml serialization. With below function.
public static string SerializeToXml(object obj)
{
XmlSerializer serializer = new XmlSerializer(obj.GetType());
using …
8
votes
4answers
479 views
Deciding on when to use XmlDocument vs XmlReader
I'm optimizing a custom object -> XML serialization utility, and it's all done and working and that's not the issue.
It worked by loading a file into an XmlDocument object, then recursively going …
7
votes
4answers
889 views
Why isn’t there an XML-serializable dictionary in .NET?
I need an XML-serializable dictionary. Actually, I now have two quite different programs that need one. I was rather surprised to see that .NET doesn't have one. I asked the question elsewhere and …
7
votes
8answers
994 views
Which is the best alternative for Java Serialization?
I'm currently working on a project which needs to persist any kind of objects (of which implementation we don't have any control) so these objects could be recovered afterwards.
We can't implement a …
6
votes
5answers
392 views
Replacement for XML Serialization
I have code using XmlSerializer to serialize/deserialize a data structure for persistance. I've read and heard in several places here on StackOverflow that XmlSerializer is one or more of:
Bad
…
6
votes
4answers
2k views
What is the best way to parse (big) XML in C# Code?
I'm writing a GIS client tool in C# to retrieve "features" in a GML-based XML schema (sample below) from a server. Extracts are limited to 100,000 features.
I guestimate that the largest extract.xml …
6
votes
5answers
925 views
Slow SoapHttpClientProtocol constructor
I'm doing some experiments with Microsoft Dynamics CRM. You interact with it through web services and I have added a Web Reference my project. The web service interface is very rich, and the generated …
5
votes
6answers
290 views
.NET XML Serialization and inheritance
I have structure like this:
public interface A
{
public void method();
}
public class B : A
{
}
public class C : A
{
}
List<A> list;
List contains objects of type B and C they also …
5
votes
13answers
514 views
Is there any point Unit testing serialization?
I have a class that serializes a set of objects (using XML serialization) that I want to unit test.
My problem is it feels like I will be testing the .NET implementation of XML serialization, instead …
5
votes
4answers
836 views
What is MyAssembly.XmlSerializers.dll generated for?
I am working on a project which generates an assembly. I just noticed that an additional assembly *.XmlSerializers.dll is being generated. Why this file is auto generated and what it is used for?
5
votes
1answer
227 views
XmlSerializer and Collection property with private setter
Say I have a simple class like so
[Serializeable]
public class MyClass
{
public MyClass()
{
this.MyCollection = new List<int>();
}
public List<int> MyCollection { …
5
votes
7answers
430 views
How to serialize classes that were not designed to be serialized?
I need to save some classes and data structures to a file. My first reflex was to use XML or Binary serialization but this is turning into a nightmare. I have a set of classes that were not meant to …
5
votes
6answers
627 views
How to deserialize Enumarable.ToList<>() to List<>
I'm trying to build an object that looks something like this:
public class MyObject
{
private IList<AnotherObject> items;
public List<AnotherObject> Items
{
return …
