Tagged Questions

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 ...
6
votes
3answers
1k views

How to ignore Event class member for binary serialization?

I need to avoid serializing an Event class member because when the event is handled by an object that is not marked as Serializable the serialization will fail. I tried using the NonSerialized ...
5
votes
2answers
374 views

Should I Still Use BinaryFormatter for Simple Serialization in .NET 4.0?

I am developing a master-slave style application. The master application will send state data to the slave(s) to process and display at some constant rate. The state data is wrapped up into a single ...
5
votes
3answers
1k views

when to use XML serialization vs binary serialization in .NET?

i have the bit confusion to when to use the xml serialization and when to use the binary serialization
5
votes
1answer
622 views

Test for Optional Field when using .NET Custom Serialization

Given a class like this one: [Serializable] public class MyClass { string name; string address; public MyClass(SerializationInfo info, StreamingContext context){ name = ...
3
votes
1answer
79 views

Deserialize to type whose namespace has changed

Using .NET 4/C#... I need to deserialize old config files that contain the serialized representation of a type named, say, ns1.X . The serialization has been done using BinaryFormatter. The problem ...
3
votes
3answers
183 views

Where is this non-serializable object?

I'm trying to serialize an object and the following SerializationException is thrown: Type 'System.Linq.Enumerable+d__71`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, ...
2
votes
3answers
91 views

Serialization in .NET

My task was to serialize and deserialize an object. I want to know: Whether my object is serialized in the way I'm doing it How I get to know that my object is being serialized or deserialized ...
2
votes
2answers
111 views

How can I serialize a 3rd party type using protobuf-net or other serializers?

I have List<HtmlAgilityPack.HtmlNode> but protobuf-net gives me error that it doesn't have a contract. How can I specify a contract for it when I don't have the source? It actually said it ...
2
votes
3answers
549 views

How to analyse contents of binary serialization stream?

I'm using binary serialization (BinaryFormatter) as a temporary mechanism to store state information in a file for a relatively complex (game) object structure; the files are coming out much larger ...
1
vote
0answers
33 views

Explicit BinaryFormatter serialization when Constructor is not called

Some background about my problem: I have a lot of classes that implement ISerializable and are designed to be serialized using the explicit BinaryFormatter methods: .ctor(SerializationInfo info, ...
1
vote
1answer
164 views

Binary serialization in C# (really, WYSIWYG serialization)

(for WYSIWYG I mean that I decide WHAT is written and HOW it's written, and not someone at Microsoft or at Google) (OK... Technically I don't decide anything... Someone that programmed some years ago ...
1
vote
2answers
170 views

Example of a Customer Binary Serializer in .Net

So, I want to implement my own binary serialization. I'm looking for some examples to head me in the right direction. Also, am I better to make my own serializer class, or just implement ...
1
vote
2answers
150 views

binary serialization, adding a new field to class - will it work?

I have a client and a server application which communicate over .NET 2.0 Remoting using binary serialization. A small change has been made to one of the data transfer object's interface and the ...
0
votes
0answers
147 views

SerializationException Unable to find assembly

I need to know if is possible serialize an object of type AssemblyA.MyType and deserialize the file to type AssemblyB.MyType. These two types are identicals, the only difference is the location that ...
0
votes
3answers
254 views

.NET Binary Serialize object with references to other objects . . . what happens?

If you have an object instance A that references other objects (for example instances B and C), and you binary serialize A to a file, what happens? Do you now have serialized data that includes A, B ...
0
votes
5answers
268 views

Serializable attribute .NET

I'm using Binary Serialization in .NET to clone objects. Any of my own classes I must mark with the <Serializable()> attribute in order for the serializer to process the class. However since ...
0
votes
3answers
402 views

Best method for serializing objects in .NET (as of v4.0)

I have an simple custom object called MyObject (a couple of basic properties and a List(of MyObject), so it's recursive) that I need to serialize for storage. I'm not sure if I'll serialize to XML or ...