1
vote
1answer
12 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 …
2
votes
4answers
606 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 = …
8
votes
4answers
124 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 …
2
votes
5answers
408 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 …
2
votes
1answer
110 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
518 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 = …
