Tagged Questions
75
votes
13answers
42k views
XmlSerializer - There was an error reflecting type
Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor:
XmlSerializer ...
62
votes
10answers
40k views
How do you do a deep copy an object in .Net (C# specifically)?
I want a true deep copy. In Java, this was easy, but how do you do it in C#?
51
votes
2answers
49k views
Parsing JSON using Json.net
I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused as to how to accomplish what I need. Here is the format for the JSON I need to ...
49
votes
9answers
12k views
Deserialize JSON into C# dynamic object?
Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
42
votes
8answers
15k views
XML Serialization and Inherited Types
following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!).
The problem I have is that I have a ...
40
votes
9answers
8k views
.NET How to serialize a TimeSpan to XML
I am trying to serialize a .NET TimeSpan object to XML and it is not working. A quick google has suggested that while TimeSpan is serializable, the XmlCustomFormatter does not provide methods to ...
31
votes
6answers
14k views
Serialize a nullable int
I have a class with a nullable int? datatype set to serialize as an xml element. Is there any way to set it up so the xml serialializer will not serialize the element if the value is null?
I've ...
28
votes
10answers
15k views
How to check if an object is serializable in C#
I am looking for an easy way to check if an object in C# is serializable.
As we know you make an object serializable by either implementing the ISerializable interface or by placing the ...
25
votes
2answers
6k views
How does WCF deserialization instantiate objects without calling a constructor?
There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor?
For example, consider this data contract:
...
24
votes
5answers
7k views
Serializing and Deserializing Expression Trees in C#
Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.
23
votes
6answers
38k views
Deserializing XML to Objects in C#
So I have xml that looks like this:
<todo-list>
<id type="integer">#{id}</id>
<name>#{name}</name>
<description>#{description}</description>
...
22
votes
8answers
7k views
Fast and compact object serialization in .NET
I want to use object serialization to communicate over the network between a Mono server and Silverlight clients.
It is pretty important that serialization is space efficient and pretty fast, as the ...
21
votes
1answer
2k views
DataContractSerializer doesn't call my constructor?
I just realized something crazy, which I assumed to be completely impossible : when deserializing an object, the DataContractSerializer doesn't call the constructor !
Take this class, for instance :
...
21
votes
5answers
12k views
Is it possible to deserialize XML into List<T>?
Given the following XML:
<?xml version="1.0"?>
<user_list>
<user>
<id>1</id>
<name>Joe</name>
</user>
<user>
...
21
votes
6answers
6k views
Serializing anonymous delegates in C#
I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas.
// see ...
20
votes
2answers
772 views
C# and F# lambda expressions code generation
Let's look at the code, generated by F# for simple function:
let map_add valueToAdd xs =
xs |> Seq.map (fun x -> x + valueToAdd)
The generated code for lambda expression (instance of F# ...
20
votes
5answers
8k views
Serializing private member data
I'm trying to serialize an object to XML that has a number of properties, some of which are readonly.
public Guid Id { get; private set; }
I have marked the class [Serializable] and I have ...
20
votes
5answers
29k views
How to Deserialize XML document
How do I Deserialize this XML document:
<?xml version="1.0" encoding="utf-8"?>
<Cars>
<Car>
<StockNumber>1020</StockNumber>
<Make>Nissan</Make>
...
20
votes
12answers
3k views
What is the most flexible serialization for .NET objects, yet simple to implement?
I would like to serialize and deserialize objects without having to worry about the entire class graph.
Flexibility is key. I would like to be able to serialize any object passed to me without ...
19
votes
4answers
17k views
JavaScriptSerializer.Deserialize - how to change field names
Summary: How do I map a field name in JSON data to a field name of a .Net object when using JavaScriptSerializer.Deserialize ?
Longer version: I have the following JSON data coming to me from a ...
18
votes
3answers
4k views
Is there a tool to generate C# classes based off a JSON string?
I'm wondering if there is a tool out there that can take in a JSON string, analyze it, and generate a C# class file that can then be used to deserialize the json string into a C# object of that class.
...
18
votes
6answers
4k views
What JSON library works well for you in .NET?
I'd be interested in hearing what JSON library folks in the community have been using inside of .NET? I have a need to parse/serialize some JSON object graphs from inside .NET (C#) to actual .NET ...
17
votes
1answer
189 views
Serializing null in JSON.NET
When serializing arbitrary data via JSON.NET, any property that is null is written to the JSON as
"propertyName" : null
This is correct, of course.
However I have a requirement to ...
16
votes
4answers
21k views
C# automatic property deserialization of JSON
I need to deserialize some JavaScript object represented in JSON to an appropriate C# class. Given the nice features of automatic properties, I would prefer having them in these classes as opposed to ...
15
votes
5answers
2k views
What's the difference between using the Serializable attribute & implementing ISerializable?
What's the difference between using the Serializable attribute and implementing the ISerializable interface?
15
votes
2answers
4k views
Ignoring a field during .NET JSON serialization; similar to [XmlIgnore]?
I have a POCO class that is being sent to the browser as a JSON string in .NET 3.5 sp1. I am just using the default JSON serialization and I have some fields that I want to ignore. I want to put an ...
15
votes
11answers
12k views
How to serialize an Exception object in C#?
I am trying to serialize an Exception object in C#. However, it appears that it is impossible since the Exception class is not marked as Serializable. Is there a way to work around that?
UPDATE: If ...
15
votes
3answers
13k views
Can I serialize a C# Type object?
I'm trying to serialize a Type object in the following way:
Type myType = typeof (StringBuilder);
var serializer = new XmlSerializer(typeof(Type));
TextWriter writer = new StringWriter();
...
14
votes
3answers
4k views
Deserialize array values to .NET properties using DataContractJsonSerializer
I'm working with the DataContractJsonSerializer in Silverlight 4 and would like to deserialize the following JSON:
{
"collectionname":"Books",
"collectionitems": [
...
14
votes
5answers
3k views
What are the differences between the XmlSerializer and BinaryFormatter
I spent a good portion of time last week working on serialization. During that time I found many examples utilizing either the BinaryFormatter or XmlSerializer. Unfortunately, what I did not find were ...
14
votes
7answers
2k views
How to unit test if my object is really serializable?
I am using C# 2.0 with Nunit Test. I have some object that needs to be serialized. These objects are quite complex (inheritance at different levels and contains a lot of objects, events and ...
13
votes
4answers
330 views
What method is most efficient at moving objects across the wire in .NET?
I've been using WebServices at moving data across the wire and that has served me pretty well. It excels at sending small pieces of data. As soon as you have to move deep object trees with lots of ...
13
votes
4answers
501 views
Why are interfaces not [Serializable]?
I would think that adding that attribute to an interface would be helpful make sure you do not create classes that use the interface and forget to make them serializable.
This could be a very ...
13
votes
6answers
3k views
How to prevent auto implemented properties from being serialized?
How can I prevent a auto implemented property from being serialized by the binary formatter?
The [NonSerialized] attribute can only be used with fields. And the field is hidden when using auto ...
13
votes
4answers
5k views
Javascript serialization of DateTime in asp.net is not giving a javascript date object?
When I parse a DateTime to json in .Net it returns a string (i.e. "\/Date(1249335194272)\/"). How do I make it return a js Date object constructor not wrap in a string?
// js server code
var dteNow = ...
13
votes
5answers
17k views
Serialize Class containing Dictionary member
Expanding upon my earlier problem, I've decided to (de)serialize my ConfigFile class which worked great. I now want to store an associative array of drive letters to map (key is the drive letter, ...
13
votes
4answers
11k views
Serialization in C# without using file system
I have a simple 2D array of strings and I would like to stuff it into an SPFieldMultiLineText in MOSS. This maps to an ntext database field.
I know I can serialize to XML and store to the file ...
11
votes
4answers
4k views
Ignore binary serialization on a property
I have a regular C# POCO. At the class level, I am decorating the object with [Serializable()].
That said, I am using the Linq Sum() on one of the properties and I am receiving an error upon ...
11
votes
3answers
487 views
Is it reliable to compare two instances of a class by comparing their serialized byte arrays?
Given two instances of a class, is it a good and reliable practice to compare them by serializaing them first and then comparing byte arrays (or possibly hashes of arrays).
These objects might have ...
11
votes
3answers
3k views
Serialize a Static Class?
What happens if we serialize a static class? Can more than one instance of the static class be created if we serialize it?
[Serializable]
public static class MyClass
{
public static MyClass()
...
11
votes
5answers
5k views
Can an internal setter of a property be serialized?
Is there any way to serialize a property with an internal setter in C#?
I understand that this might be problematic - but if there is a way - I would like to know.
Example:
[Serializable]
public ...
11
votes
4answers
5k views
Is it possible to Serialize a LINQ object?
I'd like to serialize some LINQ generated objects and store them in a table as a binary field (Never you mind why). I'd like to be able to write some code that looks something like this:
...
11
votes
10answers
24k views
How do I map XML to C# objects
I have an XML that I want to load to objects, manipulate those objects (set values, read values) and then save those XMLs back.
It is important for me to have the XML in the structure (xsd) that I ...
11
votes
7answers
2k views
Enforce Attribute Decoration of Classes/Methods
Following on from my recent question on Large, Complex Objects as a Web Service Result. I have been thinking about how I can ensure all future child classes are serializable to XML.
Now, obviously I ...
10
votes
3answers
4k views
WCF: Serializing and Deserializing generic collections
I have a class Team that holds a generic list:
[DataContract(Name = "TeamDTO", IsReference = true)]
public class Team
{
[DataMember]
private IList<Person> members = new ...
10
votes
3answers
3k views
C# Xml serialization - disable rendering root element of array
can i someway disable rendering of root element of collection?
this class with serialization attibutes
[XmlRoot(ElementName="SHOPITEM", Namespace="")]
public class ShopItem
{
...
10
votes
3answers
1k views
c# stream received all data?
I'm using C#.Net and the Socket class from the System.Net.Sockets namespace. I'm using the asynchronous receive methods. I understand this can be more easily done with something like a web service; ...
10
votes
7answers
2k views
Large, Complex Objects as a Web Service Result
Hello again ladies and gents!
OK, following on from my other question on ASP.NET Web Service Results, Proxy Classes and Type Conversion. I've come to a part in my project where I need to get my ...
9
votes
2answers
223 views
Serialization of unprintable character
The following code;
var c = (char) 1;
var serializer = new XmlSerializer(typeof (string));
var writer = new StringWriter();
serializer.Serialize(writer, c.ToString());
var serialized = ...
9
votes
3answers
3k views
EF 4.1 - Code First - JSON Circular Reference Serialization Error
I am getting an a Circular Reference Serialization Error although, to my knowledge I do not have any circular references. I am retrieving a set of Orders from the database and sending them to the ...