¡@

Home 

c# Programming Glossary: serialisation

Passing on variables from ViewModel to another View (MVVMCross)

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

constructor parameter passing at present this is due to serialisation requirements for Xaml Urls and for Android Intents. If you want.. there's an Extras string containing the request see the deserialisation in CreateViewModelFromIntent in https github.com slodge MvvmCross..

How do you find out when you've been loaded via XML Serialization?

http://stackoverflow.com/questions/1266547/how-do-you-find-out-when-youve-been-loaded-via-xml-serialization

I'm trying to load a tree of objects via XML serialisation and at the moment it will load the objects in and create the..

Best way to store data locally in .NET (C#)

http://stackoverflow.com/questions/1941928/best-way-to-store-data-locally-in-net-c

question. There are plenty of 'how to' responses here on serialisation which is my fault since I didn't make it clearer early on but..

Sharing data between AppDomains

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

share improve this question The only way to avoid serialisation is to represent your data using objects which derive from MarshalByRefObject..

How does BinaryFormatter.Deserialize create new objects?

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

this is what the actual code in the constructor will do. Deserialisation does much the same thing as the first step by calling FormatterServices.GetUninitializedObject.. fields to be equivalent to those that were recorded during serialisation which may require deserialising other objects to be said values.. other objects to be said values . Now the state that deserialisation is putting the object into may not correspond to that possible..

How to deep copy between objects of different types in C#.NET

http://stackoverflow.com/questions/569154/how-to-deep-copy-between-objects-of-different-types-in-c-net

considered using both reflection which is slow and binary serialisation which is also slow to perform the mapping of the common properties...

System.InvalidOperationException: Unable to generate a temporary class (result=1)

http://stackoverflow.com/questions/657993/system-invalidoperationexception-unable-to-generate-a-temporary-class-result-1

XML Serialisation works by generating code to perform the serialisation. This is done in a temporary assembly created for that purpose.. sgen.exe to pre generate at development compile time the serialisation assembly and then use and deplot that assembly. 1 Open question..

Serializable classes and dynamic proxies in EF - how?

http://stackoverflow.com/questions/7276507/serializable-classes-and-dynamic-proxies-in-ef-how

to clone my entities. This I've attempted to do with a serialisation approach as found in codeproject . because the classes are generated.. about it a little it seems that if I do a clone via serialisation all the IDs for things that used to belong to the old object..