Stories recently tagged with 'Serialization'

Serialization/Deserialization (programming360.blogspot.com)

submitted by syedtayyabalisyedtayyabali(135) 11 months, 22 days ago

Serialization is the process of converting object into linear sequence of byte, while deserialization is constructing object from that serialized linear sequence of byte. read more...

add a comment |category: |Views: 3

tags: another

Xml serialization using generics(ruijarimba.wordpress.com)

submitted by ruijarimbaruijarimba(81) 1 year ago

Serialize/deserialize your objects using generics. Customize settings like indentation, encoding, namespaces and others. read more...

add a comment |category: |Views: 11

tags: another

Version Tolerant Serialization(cavemansblog.wordpress.com)

submitted by cavemansblogcavemansblog(40) 3 years ago

We had a situation where the datatypes of a few properties in a extended commerce server 2007 class had to be changed. This class is serializable and a change to the datatypes would break compatibility with the data from the past. The data from the past has to be supported by the application for a period of about 3 months. read more...

add a comment |category: |Views: 34

tags: another

More on XAML Serialization(statestreetgang.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 3 years, 9 months ago

The hidden story behind serialization of collections. Short version: You have to implement IDictionary or IList, or be an ArrayExtension. Oh, and stay far away from IAddChild. read more...

add a comment |category: |Views: 83

tags: another

XAML Serialization FTW(statestreetgang.net)

submitted by yesthatmcgurkyesthatmcgurk(4063) 3 years, 11 months ago

Some notes on my journey from XML serialization to XAML serialization of POCO's. read more...

add a comment |category: |Views: 86

tags: another

Put Down the XmlNode and Step Away From the StringBuilder(vonsharp.net)

submitted by viggityviggity(1124) 4 years, 3 months ago

Demonstrates the easiest way of generating and parsing Xml available in the .net framework. No more XmlNodes and no more CleanStringForXml custom utility functions. read more...

add a comment |category: |Views: 18

tags: another

XMLSerializer: XML Serialization Helper Class(ifxplus.com)

submitted by m.casatim.casati(600) 4 years, 7 months ago

The purpose of XMLSerializer helper class is to simplify the basic serialization tasks, such as the conversion of objects to XML - string or file - and vice versa (deserialization) read more...

add a comment |category: |Views: 195

tags: another

Introduction to XML Serialization(alteridem.net)

submitted by rprouserprouse(1175) 4 years, 9 months ago

Two static generic methods that allow you to serialize or deserialize classes to/from XML with one line of code and a short article giving an overview of XML serialization. read more...

add a comment |category: |Views: 21

tags: another

class.Serialize() (geekzilla.co.uk)

submitted by phaymanphayman(3550) 4 years, 11 months ago

Handly little function which I include in most classes. This function returns the object serialized as XML, perfect for logging etc. read more...

1 comment |category: |Views: 12

tags: another

Convert a C# Object to a SQL string(coders4fun.com)

submitted by DzamirDzamir(245) 5 years ago

A static method that converts C# standard objects and types to a SQL string, e.g. a byte array is saved as a blob. read more...

2 comments |category: |Views: 58

tags: another

Sertool - A serialization diagnostics tool(kentb.blogspot.com)

submitted by kentcbkentcb(140) 5 years, 4 months ago

If you've ever had a complex data structure to serialize, only to find that - somewhere, somehow - something non-serializable has been referenced by your structure, you will find this tool indispensible. Sertool crawls an object graph and outputs the details of all objects that will be serialized by the CLR, highlighting any errors it finds along the way. It allows you to see which objects reference other objects and, hence, determine how the non-serializable types are being referenced by your data. read more...

add a comment |category: |Views: 9

tags: another

.NET - Serialization, part II(jaltiere.com)

submitted by jaltierejaltiere(885) 5 years, 9 months ago

This is the second part of the series talking about serialization in .NET. It covers implementing the IDeserializationCallback interface and using XML serialization. read more...

add a comment |category: |Views: 7

tags: another

.NET - Serialization(jaltiere.com)

submitted by jaltierejaltiere(885) 5 years, 9 months ago

This article deals with the BinaryFormatter and SoapFormatter classes in the .NET Framework, and gives an example of how you might serialize a custom object read more...

add a comment |category: |Views: 7

tags: another