Serialization
Tag details
Welcome to the 'Serialization' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'Serialization'.
Look up
"Serialization"
at The Free Dictionary
Latest blogosphere posts tagged “Serialization”
-
Interfaces Lack Data
Nicholas Allen's Indigo Blog —
Authority: 466
Why does having two known types blow up for being conflicting data contract types if the types are two different interfaces? An interface only contains declarations for its members. The interface doesnt contain any data fields and any implementation for the interface is located in the class that implements the ...2 weeks ago -
On Releasing an Open-Source Project (Moo v1.0)
Furious Purpose —
Authority: 92
Like many developers, I’ve used a large number of open-source projects over the years to get my work done. Also like many developers, I’ve worked for companies that were wary of contributing to open-source projects to any significant degree. Worse, several of these companies attempted to claim the rights to any ...2 weeks ago -
Building a Data Contract Serializer Behavior
Nicholas Allen's Indigo Blog —
Authority: 466
In configuration theres a DataContractSerializer behavior that I can add to my service, but the class it uses is internal. How do I get the same behavior programmatically? The DataContractSerializer behavior is a shortcut for setting the MaxItemsInObjectGraph and IgnoreExtensionDataObject options on endpoints. You ...3 weeks ago -
serializationFilter in HTTPMultiService
Rendezvous with technology —
Authority: 104
HTTPService/HTTPMultiService have a cool concept of a Serialization Filter. This mechanism let’s you configure and manipulate various aspects of the HTTP call like the request, response, etc.. A default implementation of SerializationFilter is provided in mx.rpc.http.SerializationFilter Usage - You can create a ...4 weeks ago -
Finding CLR Types from Schema
Nicholas Allen's Indigo Blog —
Authority: 466
How can I found out what CLR type a particular XML schema definition will map to when using data contracts? Ask the type system what type it thinks the schema will map to. static string ClrTypeForXmlType(XmlQualifiedName xmlType) { return new XsdDataContractImporter().GetCodeTypeReference(xmlType).BaseType; ...4 weeks ago

