|
|
| Serialization [+] Favor-It | |
| |
 |
| | Sort By:
|
Serialization is the process of converting an object or a con-nected graph of objects into a contiguous stream of bytes. Deserialization is the process of converting a contiguous stream of bytes back into its graph of connected objects. Author: Jeffrey Richter Code: ASP.NET v1.0 & JScript |
Maintaining the state of an object in ASP often required some very inventive and painstaking code. In the brave new world of .NET, however, Object Serialization offers us a comparatively easy way to do just that, as well as some other useful tasks.
Author: Anthony Hart Code: ASP.NET v1.0 & VB |
Serialization in .NET allows the programmer to take an instance of an object and convert it into a format that is easily transmittable over the network, or even stored in a database or file system. Author: Robert Chartier Code: ASP.NET v1.0 & VB |
|  | |
This article provides a roadmap to learn and to master serialization and deserialization of XML with the .NET Framework (System.Xml namespace).
Author: microsoft.com Code: ASP.NET v1.0 & VB |
In the past, maintaining the state of an object in ASP often required some very inventive and painstaking code. In the brave new world of .NET, however, Object Serialization offers us a easy way to do just that, as well as some other useful tasks.
Author: Anthony Hart Code: ASP.NET v1.0 & VB |
While serializing object properties to XML is certainly useful in a variety of situations, it can also be useful to read from a serialized XML document and re-create or "rehydrate" an object. Author: Dan Wahlin Code: ASP.NET v1.1 & C# |
The .NET platform provides the ability to save the state of an object using serialization techniques. If you're not familiar with serialization, it's a way to persist object data to another form such as binary or XML data. Author: Dan Wahlin Code: ASP.NET v1.0 |
|  | |
.NET provides a way to serialize objects in XML format. Thus objects can be converted into XML documents (serialization) and later on can be constructed back from the XML documents (deserialization). Author: Bipin Joshi Code: |
The .NET platform offers powerful serialization capabilities. This example shows how the Web.Config file can be updated using ASP.NET and XML Serialization techniques. Author: unknown Code: ASP.NET Beta 2 & VB |
Icon Key >
 - Recently Updated
 - Showcase Listing
|