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 ...
8
votes
4answers
281 views
How do I deserialize old data for a type that has changed?
I have data that has been stored using binary serialization for the following class:
[Serializable]
public abstract class BaseBusinessObject
{
private NameValueCollection _fieldErrors = new ...
6
votes
3answers
1k views
How does BinaryFormatter.Deserialize create new objects?
When BinaryFormatter deserializes a stream into objects, it appears to create new objects without calling constructors.
How is it doing this? And why? Is there anything else in .NET that does this?
...
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
373 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 = ...
5
votes
2answers
2k views
deserializing a generic list returns null
I'm de/serializing an object like so:
public class myClass : ISerializable
{
public List<OType> value;
public myClass(SerializationInfo info, StreamingContext context)
{
this.value = ...
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
4answers
855 views
C# BinaryFormatter.Deserialize “unable to find assembly” after ILMerge
So I have a C# solution with a referenced dll (also C# with the same .Net version). When I build the solution and run the resulting exe, without merging the exe and the referenced dll, everything ...
3
votes
2answers
764 views
Why can't the 'NonSerialized' attribute be used at the class level? How to prevent serialization of a class?
I have a data object that is deep-cloned using a binary serialization. This data object supports property changed events, for example, PriceChanged.
Let's say I attached a handler to PriceChanged. ...
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
108 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
1answer
128 views
Problem with Lists of custom type and Serialization
We are working on releasing version 2.0 of one of our products, and we want to maintain file compatibility with the installed base of version 1.0 customers. I have been implementing ISerializable on ...
2
votes
2answers
215 views
getting “unable to find assembly” when trying to deserialize, works from client to server but not the other way
I've read plenty of similar questions and answers on this topic, but still not sure why I get this problem.
I have a client and server projects, both using the same dll library I created.
when I ...
2
votes
1answer
114 views
Is there a shortcut to binary-serialize every property in an object?
If there is an object in which every public property must be serialized and properties are simple (just numbers or strings or objects already implementing ISerializable), is there an easy way to do it ...
2
votes
3answers
547 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 ...
2
votes
4answers
5k views
Convert a byte[] array into DataTable
I saved an object of type DataTable into SQL 2005 database in a field of type varbinary. I want to retrieve it back but I wasn't able to type cast it. This is how i saved it.
MemoryStream memStream = ...
1
vote
0answers
32 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
124 views
Binary serialization of mutable F# record
I have used binary serialization to save an F# record from a C# class. All works fine:
F#:
type GameState =
{
LevelStatus : LevelStatus
Grid : Variable<Option<Ball> ...
1
vote
4answers
65 views
Customize a struct so that it serializes as a Int32
I save data using binary serialization. Now I have changed a field in the program from Int32 to a struct. But I still want to save the field as Int32 to be backward compatible. How do I do that?
...
1
vote
2answers
258 views
Send client side data Queue to server side through Tcp/IP
I wanna send data from client to server. There are two queues. in client side and in server side. I want to my client to be connected to the server and send all the data in client queue to the server. ...
1
vote
1answer
99 views
Serializing enum-like objects
I am using binary serialization (with BinaryFormatter, etc) to serialize a graph of objects. Of those objects, some have fields of a certain type that is similar to an enumeration, except with ...
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
158 views
Serialization problem : System.UnauthorizedAccessException
I am getting this error:
An unhandled exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll
Additional information: Access to the path 'C:\Users\Storm ...
1
vote
2answers
473 views
Conditional C# Binary Serialization
I am using BinaryFormatter to serialize a class and its variables by condition. For example:
[Serializable]
public class Class1
{
private Class2 B;
...
}
[Serializable]
public class Class2{...}
I ...
1
vote
1answer
423 views
Is there an XML specific object (like XElement) that is binary serializable?
I have a use case where I am serializing objects over the wire via MSMQ (mostly strings). When I read the object off the queue I want to be able to tell if the user meant for the object to be a XML or ...
0
votes
1answer
83 views
Sporadic serialization failure in C#
We have an Excel import into our system that we test quite rigorously. Recently, we've been noticing sporadic serialization errors.
These errors are popping up in our automated tests against the ...
0
votes
0answers
32 views
What is the lifecycle of Binary Deserialization? [closed]
Possible Duplicate:
How does BinaryFormatter.Deserialize create new objects?
What happens in what order?
Are property setters and getters called? If so is there a way to avoid that?
Is ...
0
votes
2answers
200 views
C# and Android/Java - cross-language binary stream writers/readers? (for primitives and UTF-8 strings)
What is the easiest way to do binary serialization/deserialization of some custom data between C# and Android's Java? I'd like to find for Java something similar to C# BinaryWriter and BinaryReader - ...
0
votes
2answers
89 views
C# serialize only values into a byte stream
Is there any possibility to automatically serialize properties of a class into a byte[] array or stream.
Stream stream = File.Open(@"C:/traiBin.bin", FileMode.Create);
BinaryFormatter bFormatter = ...
0
votes
1answer
93 views
Deserializing a byte[] back into a DataTable
I have the following code to serialize /deserialize a DataTable:
public static byte[] Serialize(DataTable dt)
{
System.IO.MemoryStream stream = new System.IO.MemoryStream();
...
0
votes
0answers
64 views
How to modify the serialised output of a BinaryFormatter in c#
I've got a bit of a versioning issue with my serialisation/deserialisation code. The problems has a few parts so let me outline these:
I do not have access to the code consuming the binary messages
...
0
votes
3answers
102 views
Is there a chance of saving the hashcode of an object during its binary serialization (binary)?
I want to be able to compare objects by the hashcode.
Per example, one is the object itself, and the other is serialized (binary) and then recovered version of the object.
How can I save the hash ...