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 ...
61
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#?
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
8answers
15k views

WCF: DataMember attribute on property vs. member

In wcf, what is the difference between applying the DataMember attribute on a property private int m_SomeValue; [DataMember] public int SomeValue { get {...} set {...} } instead of a ...
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
6answers
4k views

What is the correct way to make a custom .NET Exception serializable?

More specifically, when the exception contains custom objects which may or may not themselves be serializable. Take this example: public class MyException : Exception { private readonly string ...
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 : ...
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
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 ...
17
votes
1answer
186 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 ...
17
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. ...
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
3answers
2k views

Can I serialize Anonymous Types as xml?

I understood that anonymous types are marked private by the compiler and the properties are read-only. Is there a way to serialize them to xml (without deserialize) ? It works with JSON, how can I do ...
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 ...
14
votes
2answers
443 views

How to debug deserialization errors in .NET?

.NET's Deserilization errors are quite generic, for example something like this: System.ArgumentException: Object of type 'System.Uri' cannot be converted to type 'System.String'. It's clear ...
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
5answers
404 views

Why classes are not serializable by default in .Net?

Developers have to 'opt in' for making classes serializable by explicitly using SerializableAttribute. What could go wrong if classes were serializable by default?
12
votes
4answers
495 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 ...
11
votes
4answers
510 views

Creating a checksum on an object graph

This question is related to this one but I think should be asked separately. I have a complex graph of object instances. Now I would like to create a checksum on this object graph directly in memory ...
11
votes
3answers
4k views

What is an object graph and how do I serialize one

I've been reading lately about serialization. I've read that when I use XmlSerialization I cannot serialize object graphs. What is an object graph and why I cannot serialize it simply? Kind Regards ...
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
6answers
4k views

Is there Any Off-The-Shelf Json Serialization helper class in .NET BCL?

I need to serialize/de-serialize some objects into/from string and transfer them as just opaque data. I can use XmlSerializer to do it, but generated string looks clumsy and long. So, is there any ...
10
votes
3answers
266 views

Serialization and Obfuscation in .NET

I have a binary that I want to obfuscate and the hand out to users. Let us assume I use the an unobfuscated version of my binary to serialze data using the off the shelf .NET binary formatter. Could ...
10
votes
1answer
344 views

.Net Binary Deserialization Failure detection/forensics for runtime platform

I'm looking for insight on how to instrument a runtime platform to expose the source type of a Microsoft .Net binary deserialization failure. When using ...
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
5answers
519 views

Possible Solutions to Poor Serialization Performance

I recently did some performance testing and analysis of an ASP.NET application using out-of-process session state - this is necessary when using session state on a web farm so that state can be ...
9
votes
2answers
404 views

Using a custom WCF serializer in Silverlight

In "full" .NET it is pretty easy to swap out the serializer - either in configuration, or via custom attributes. However, I want to do something similar in Silverlight's WCF - i.e. provide a different ...
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
2k views

Can I serialize an ExpandoObject in .NET 4?

I'm trying to use a System.Dynamic.ExpandoObject so I can dynamically create properties at runtime. Later, I need to pass an instance of this object and the mechanism used requires serialization. Of ...
9
votes
3answers
2k views

Strange behaviour of .NET binary serialization on Dictionary<Key, Value>

I encountered a, at least to my expectations, strange behavior in the binary serialization of .NET. All items of a Dictionary that are loaded are added to their parent AFTER the OnDeserialization ...
9
votes
3answers
8k views

End of Stream encountered before parsing was completed?

I am trying to deserialize a stream but I always get this error "End of Stream encountered before parsing was completed"? Here is the code: //Some code here BinaryFormatter b = new ...
8
votes
4answers
2k views

Fastest way to serialize and deserialize .NET object

im looking for the fastest way to serialize and deserialize .NET object. Here is what i have so far... public class TD { public List<CT> CTs { get; set; } public List<TE> TEs { ...
8
votes
1answer
199 views

Is there a framework for .NET that supports Erlang's concept of “mobile code”?

In other words, "A serialization framework for closures and their set of (IL-code) dependencies".
8
votes
2answers
337 views

confused about how to use JSON in C#

The answer to just about every single question about using C# with json seems to be "use JSON.NET" but that's not the answer I'm looking for. the reason I say that is, from everything I've been able ...
8
votes
4answers
1k views

OutOfMemoryError calling XmlSerializer.Deserialize() - not related to XML size!

This is a really crazy bug. The following is throwing an OutOfMemoryException, for XML snippits that are very short and simple (e.g., <ABC def='123'/>): public static T ...
8
votes
4answers
534 views

Persist an object that is not marked as serializable

I need to persist an object that is not marked with the serializable attribute. The object is from a 3rd party library which I cannot change. I need to store it in a persist place, like for example ...
8
votes
5answers
4k views

Generic WCF JSON Deserialization

I am a bit new to WCF and will try to clearly describe what I am trying to do. I have a WCF webservice that uses JSON requests. I am doing fine sending/receiving JSON for the most part. For ...
8
votes
6answers
1k views

How to I serialize a large graph of .NET object into a SQL Server BLOB without creating a large buffer?

We have code like: ms = New IO.MemoryStream bin = New System.Runtime.Serialization.Formatters.Binary.BinaryFormatter bin.Serialize(ms, largeGraphOfObjects) dataToSaveToDatabase = ms.ToArray() // put ...
8
votes
2answers
1k views

When implementing IXmlSerializable, how to only override either ReadXml or WriteXml and not both?

I would like to implement IXmlSerializable on a class and only override either ReadXml or WriteXml, but not both. If I didn't implement IXMLSerializable on this class, the XMLSerializer would ...
8
votes
7answers
4k views

How to deep copy between objects of different types in C#.NET

I have a requirement to map all of the field values and child collections between ObjectV1 and ObjectV2 by field name. ObjectV2 is in a different namspace to ObjectV1. Inheritence between the ...
8
votes
5answers
3k views

Binary Deserialization with different assembly version

I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes. The serialization/deserialization works fine, however if I were to change the ...
7
votes
1answer
113 views

LINQ serialization

Somewhere (I wish I knew where), Jon Skeet and Marc Gravel were thinking about working on a tool that translated a LINQ query to XML for transfer over the wire? Does anyone know if they, or someone ...
7
votes
2answers
210 views

How to compare two .NET object graphs for differences?

In our Client/Server Application we've been using BinaryFormatter for the serialization process. For performance reasons we are trying to migrate to protobuf-net ( ...
7
votes
5answers
374 views

Turn C# object into a JSON string in .NET 4

I have classes like these: class MyDate { int year, month, day; } class Lad { string firstName; string lastName; MyDate dateOfBirth; } And I would like to turn a Lad object into a ...
7
votes
1answer
359 views

C# BinaryFormatter exception

I'm attempting to move an object graph from a server process to a client. And it works. At least it works when the both the client and server are on my dev virtual machine. It also works when I run ...

1 2 3 4 5 19