`BinaryFormatter` is a serializer built into the .net framework. It serializes fields regardless of their visibility into an unspecified binary format. It supports polymorphism and cyclic object graphs.
-2
votes
0answers
19 views
BinaryFormatter Deserialize in objective c
I have a message on the .NET server serialize using the below function
Public Shared Function SerializeMessageByString(ByVal msg As Object) As Byte()
Using m As New MemoryStream()
...
1
vote
3answers
44 views
File.Open Cross Thread Writing
Is it safe to open a file and write a stream to it across multiple threads? If no what could I implement to make it safe?
-2
votes
2answers
37 views
BinaryFormatter in objective c
i have function in my .net app
Public Shared Function SerializeMessageByString(ByVal msg As Object) As Byte()
Using m As New MemoryStream()
Dim bin As New BinaryFormatter()
...
0
votes
0answers
14 views
Unable to read beyond end of stream; Serializing an ObservableCollection
I have the following save and load method in my collection class:
private void Save()
{
BinaryFormatter formatter = new BinaryFormatter();
FileStream stream = null;
...
0
votes
2answers
51 views
How to convert image into binary format in iOS?
I am working on a project where I need to upload image to my server. I want to store my image's binary data to BLOB data type field in database. Therefore I need to convert my image into binary ...
1
vote
1answer
72 views
Binary stream '0' does not contain a valid BinaryHeader error on deserialization
After searching for an answer to this issue for the last 2 days, I'm hoping someone here can help.
I have written a program in c# using VS2012 that saves the user's project data using BinaryFormatter ...
2
votes
2answers
156 views
Serialized objects disappearing (BinaryFormatter)
Background
I have an object which I need to serialize in order to transfer to a high performance computing cluster for later use
Previously, I've used the out-of-the-box binary formatter for my ...
0
votes
2answers
138 views
Serialization Exception: End of Stream encountered before parsing was completed - C# [closed]
I'm trying to convert a byte array to an object. To eliminate any possible problems I created a simple windows form that simply calls the function that is breaking in my original code and I get the ...
3
votes
1answer
97 views
deserealize into a generic sortedlist C#
I want to deserialize in a generic SortedList, just like this example with the hashtable
...
0
votes
1answer
146 views
Binary serialization and automatic properties
I have a class like this:
public class Foo
{
public IBar {get;set;}
//tons of other properties
}
public interface IBar
{
//whatever
}
The class is used for binary serialization ...
0
votes
0answers
129 views
deserialize object(s) using binary formatter in c#
I have serialized text file from (Java/android). I need to deserialize this text file using c# binary formatter . but I face an error tell me that the input stream is not in binary format. kindly note ...
0
votes
1answer
385 views
Serialize and Deserialize object graph using BinaryFormatter
I'm trying to serialize my object graph to a string then deserialize it from a string. The object serializes just fine is I do this
using (var memStream = new System.IO.MemoryStream())
{
...
1
vote
1answer
91 views
Deserialize object binary to XML?
I am having some trouble deserializing an object to XML. I am trying to deserialize something which doesn't have an empty constructor thus I need to use the BinaryFormatter? I have:
A DLL which ...
0
votes
0answers
37 views
Can a BlockingCollection be Serializable?
I am attempting to serialize a BlockingCollection to a file, but when I attempt to do so with the code below I get an exception saying that it is not marked as serializable. Within the same module I ...
0
votes
2answers
108 views
Serialize an object without the object's information
I am in a situation I need to serialize only the values of the members of an object to a file.
for example, if the object contains 3 string members I would want the output of the serialization to be ...
0
votes
2answers
104 views
difference of two methods for converting byte[] to structure in c#
I'm doing some conversions between some structures and thier byte[] representation. I found two way to do this but the difference (performance, memory and ...) is not clear to me.
Method 1:
public ...
1
vote
1answer
108 views
Deserialize types moved across assemblies
I have a bunch of types which have been moved from one assembly to another. I am trying to deserialize data which was serialized using the old assembly into types in the new assembly by using a ...
0
votes
1answer
231 views
Load File Not working - The magic number in GZip header is not correct
I am attempting to create a Save/Load class that has the option for saving & load files compressed files. Below is what I have so far. Stepping through it seems to work just fine, except that I ...
1
vote
2answers
250 views
Using BinaryFormatter and XmlSerializer interchangeably
I've inherited a large amount of code that uses BinaryFormatter for serialization, that I now need to debug. All the serialization code currently expects an IFormatter.
I had a idea to replace the ...
0
votes
0answers
201 views
BinaryFormatter Deserialize randomly hangs while deserializing a NetworkStream
I've tried to omit as much code as possible without obscuring the real problem areas. If anyone needs to see the full code, let me know.
So we have built a dead simple TCP application that mitigates ...
0
votes
1answer
38 views
Weird binary formatter behaviour
I have a struct with an array of images :
public struct ObjectImages
{
public System.Drawing.Image[] _images;
public ObjectImages(System.Drawing.Image[] images)
{
_images = ...
1
vote
2answers
342 views
BinaryFormatter - Is it possible to deserialize known class without the assembly?
I am currently trying to interoperate with a program that sends data over the network after first formatting it with C#'s BinaryFormatter. It's a dumb idea, and I hate it, but I have to interoperate ...
0
votes
1answer
86 views
deserialize system.outofmemoryexception on a networkstream
I've got a serializeable class called Cereal with several public fields shown here
<Serializable> Public Class Cereal
Public id As Integer
Public cardType As Type
Public attacker As ...
0
votes
2answers
34 views
deserializing multiple types from a stream
I have a card game program, and so far, the chat works great back and forth over the TCPClient streams between host and client. I want to make it do this with serializing and deserializing so that I ...
1
vote
1answer
145 views
.NET Remoting, why isn't a list remotable?
I'm using RemotingServices.Marshal and Activator.GetObject to establish a remoting channel between two simple programs residing on the same computer.
public class IpcInterface : MarshalByRefObject
{
...
1
vote
1answer
83 views
Sanitize Input for BinaryFormatter
I'm using the .NET BinaryFormatter, along with Convert.ToBase64String to serialize a custom object and store it in a hidden <input> tag on a web page.
When the user submits the form, I then ...
0
votes
3answers
148 views
Converting a class to byte array without any values already contains 220 bytes of my 256 available bytes
I'm currently working on saving the class UsageData to a byte array and storing it on a hardware key. This hardware key has reserved a maximum 256 number of bytes for user data. Currently my filled ...
1
vote
3answers
122 views
hooking into the deserialization process
I have a DateRange object that represents the notion of Infinity via Static reference as shown below. As you see, the end points that define Infinity are also static references in a different class, ...
4
votes
1answer
276 views
Can I serialize an object (containing members: Dictionary, List… etc) in Mono and deserialize it in MS.NET or vice versa by using protobuf-net?
I have a server running on MS.NET and a client on Mono (this is a Unity3D engine) and when i try to BinaryFormatter().Deserialize an object like this:
[Serializable]
public class Simulator ...
0
votes
1answer
231 views
Program hangs when trying to deserialize an object
I am developing a windows based chat application. When the client first sends the Command class, server gets it processes it and acknowledges the client by sending another Command class.
(I have ...
0
votes
1answer
258 views
BinaryFormatter Serialize Produces Different Results
Within my application's Authentication code, using FormsAuthentication to handle the most intricate pieces, I've narrowed the possible culprits to an environment issue on certain machines running the ...
2
votes
2answers
118 views
Where best store temporary deserialization data?
Can I avoid adding additional fields to a class to store data which is needed only for deserialization/serialization?
Suppose I have some class:
[Serializable]
class MyClass {
[NonSerialized]
...
1
vote
3answers
150 views
Is there anyway to calculate or get serialization time for displaying in ProgressBar?
I use C# .net 4.0 and don't see any possible way to do it, but maybe you know? :)
I do my serialization in that way:
public static void SaveCollection<T>(string file_name, T list)
{
...
0
votes
1answer
358 views
using gZipStream with one or two memory streams makes a big difference
I am definitely missing something very obvious but can anyone explain why there is a lot better compression rate in second case?!
Case 1: very low compression and sometimes even growth in size.
...
1
vote
1answer
614 views
How to deserialize BinaryFormatter
I'm trying to serialize my MMF to file and here is the code:
class MMF {
private const string filename = @"c:\NFS";
private long offset = 0;
private long length = 194;
private byte[] ...
1
vote
1answer
114 views
how to serialize StrokeCollection in c#
i want to save a Stroke in a memorystream
for this purpose is used BinaryFormatter but when i try to serialize Stroke i get a error that i can't serialize Stroke
is there any way to save a Stroke in ...
2
votes
1answer
158 views
Deserialization does not transfer my bool
I am trying to learn about sockets in C# and decided to create a multiplayer game for practice. While I have gotten quite far in the socket sending, I'm having a strange problem with a boolean always ...
0
votes
0answers
38 views
yet another 'unable to find assembly' in plug-in architectures
Well, I have a problem in loading one of assemblies in my application.Below i will explain the whole scenario:
class A{ public B BInstance{set;get;}}
class abstract B{ ///some methods and properties ...
1
vote
2answers
640 views
Binary serialization not working, not valid header
I got the following, not to comlex code, anyway I get an exception while deserialization.
The exception is: Binary stream '0' does not contain a valid BinaryHeader. Possible causes are invalid stream ...
4
votes
1answer
576 views
OnSerializing/OnSerialized methods not always called
Here is a structure I serialize in my project:
[Serializable]
class A : List<B> //root object being serialized
[Serializable]
class B
+ [A few serializable fields]
+ C customList
...
5
votes
3answers
432 views
How do you identify the field that is causing binary serialization to fail in .NET?
I am attempting to serialize an object graph in .NET with the following method:
public static byte[] Serialize(object data)
{
var binary = new BinaryFormatter();
using (var ms = new ...
0
votes
0answers
80 views
Binary Formatter and Changing Types
I am making changes to a system that saves data using the BinaryFormatter (serializing) and loads it by deserializing.
I need to make a change to the type of a property in one of the classes that is ...
1
vote
0answers
296 views
How can I track down the cause of a duplicate key exception during a binaryformatter deserialization?
While trying to deserialize a file created by a BinaryFormatter, the following exception is thrown:
ArgumentException: An item with the same key has already been added.
The stack trace starts at the ...
5
votes
1answer
422 views
OutOfMemory exception from BinaryFormatter.Deserialize coming from its internal StringBuilder call
I have a .NET 4 WCF service that is sending the client some big objects (~115Mb) that get deserialized by the client. The first time the object comes in it deserializes fine. However, all ...
0
votes
1answer
540 views
Serializable wrapper class for named pipes transport
I'm attempting to create a cross-application asp.net caching service (similar to memcached, or AppFabric/Velocity) using named pipes. The basic premise is that you can get or set cache items shared ...
-2
votes
2answers
103 views
4
votes
2answers
451 views
BinaryFormatter.Deserialize HeaderHandler capture return value
I'm using the BinaryFormatter.Deserialize(Stream, HeaderHandler). I may have missed something obvious here but I can't find any examples online so I'm hoping someone can shed some light. I've passed ...
1
vote
1answer
345 views
Serialize type as Dictionary
I'm trying to serialize Dictionary<int, int> as Dictionary<string, string>.
So I've created Test2 type from Dictionary<int, int> as follows:
[Serializable]
internal sealed ...
2
votes
1answer
90 views
How to serialize an instance of the CustomLineCap class
CustomLineCap does not have the SerializableAttribute applied to it.
I want to add a property of this type to an object graph that is currently being serialized/deserialized with a BinaryFormatter.
...
2
votes
0answers
241 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, ...


