I have a situation where I\'m serializing some .NET objects using NetDataContractSerializer and storing the XML in a database as a way to remember the state of these objects within an application. Rec
I had a similar problem as the user posting at the following location: Cross-Process Drag and Drop of custom object type in WinForms C#
Using WCF In Silverlight services, typically we want to use the DataContract and Datamember attributes to opt into what we want to have serialized. This is what we send to and from the client. For mos
I have a custom abstract base class with sub classes that I\'ve made serializable/deseriablizeable with ISerializable. When I do serialization/deserialization of single instances of this class\' sub c
I have a class Foo marked [Serializable] and implementing ISerializable. I\'m trying to serialize it via DataContractSerializer. In GetObjectData I do this:
I want to pass a fai开发者_运维问答rly generic set of data through a WCF method.The data is basically just a hierarchical set of key/value pairs, but it\'s nested to an arbitrary level.I originally co
I have a Data Access Layer, a Service Layer, and a Presentation Layer. The Presentation Layer is ASP.NET MVC2 RTM (web), and the Service Layer is WCF (services). It\'s all .NET 3.5 SP1.
I have class with property of type ISet. I want to serialize that class but don\'t know how to do with ISet.
Let\'s say you start off with this stub: [<Serializable>] type Bounderizer = val mutable _boundRect : Rectangle
our task is quite simple, we have an object graph where each object (IDItem) has a unique ID. The object graph exists two times, on the client and on the server machine.