¡@

Home 

c# Programming Glossary: serialise

Passing on variables from ViewModel to another View (MVVMCross)

http://stackoverflow.com/questions/10192505/passing-on-variables-from-viewmodel-to-another-view-mvvmcross

in this message passing at present but you can always serialise your own objects using JSON.Net or you can extend the framework.. want to experiment with navigation using your own custom serialised objects then please see http slodge.blogspot.co.uk 2013 01..

Queue-Based Background Processing in ASP.NET MVC Web Application

http://stackoverflow.com/questions/1317641/queue-based-background-processing-in-asp-net-mvc-web-application

to be 4meg. So if you intend to send large object graphs serialise to a file first and just send the filename. MSMQ is quite beautiful...

Sharing data between AppDomains

http://stackoverflow.com/questions/2206961/sharing-data-between-appdomains

marshalling by reference is not an option you will have to serialise at some point. It simply cannot be avoided. One way to do this..

How does BinaryFormatter.Deserialize create new objects?

http://stackoverflow.com/questions/3500429/how-does-binaryformatter-deserialize-create-new-objects

serialisation behaviour with ISerializable . This will serialise based on a call to ISerializable.GetObjectData and then call.. with SerializationInfo and StreamingContext fields to deserialise said constructor can even be private meaning most other code.. most other code won't even see it . Hence if we can deserialise readonly fields and have any side effects we want we can also..

Circular Reference exception with JSON Serialisation with MVC3 and EF4 CTP5w

http://stackoverflow.com/questions/4606232/circular-reference-exception-with-json-serialisation-with-mvc3-and-ef4-ctp5w

having problems with a circular reference when i try and serialise an object returned via EF4 CTP5. Im using the code first approach.. work fine if i manually instantiate the poco's i.e. they serialise to JSON fine and the scriptignore attribute is acknowledged... attribute is acknowledged. However when i try and serialise an object returned from the DAL i get the circular reference..

Using Json.net - partial custom serialization of a c# object

http://stackoverflow.com/questions/5404303/using-json-net-partial-custom-serialization-of-a-c-sharp-object

and then adding an attribute to the class you want to serialise JsonConverter typeof MyConverter Example here http www.lostechies.com..