Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > Visual Basic.Net > Serialization
Search:
What's New - What's Hot


Editing Multiple Types of Objects with Collection Editor and Serializing Objects        
Total Hits: 99  |  Today: 1 Author: Oktay1       Rating:  
Read Reviews | Write Review |   Your Rating: 

With the introduction of .NET and VB.NET, developing components and controls with VB is much more possible compared to the previous versions. The developer of a component must understand the objects, and how there are related to each other, and must provide a way to enable their creation during design time. The created objects during design time must be serialized. CollectionEditors and TypeConverters can be customized to achieve these tasks. Most of the examples are given in C# and VB programme...

Serializable Generic Collection        
Total Hits: 124  |  Today: 0 Author: behnam usefy       Rating:  
Read Reviews | Write Review |   Your Rating: 

By default, Generics Collections could not be serialize from xmlserializer. I try to create a generic collection that can serialize in xml format....

Using Serialization to Persist TreeView Control (VB.NET)        
Total Hits: 363  |  Today: 0 Author: Tom John       Rating:  
Read Reviews | Write Review |   Your Rating: 

A recent post on a MS group regarding persisting TreeView data to file and apparent lack of VB.Net example lead me to write a solution as it was one of the first problems I faced as a developer and thought it would make for an interesting article for beginners. Additionally, the utilisation of serialisation to persist objects as Xml provides an introduction to a great ‘free’ way of storing data....

Serializing Objects to SOAP        
Total Hits: 592  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

When we serialize an object to SOAP we are copying the object state into an XML structure with a SOAP envelope. This provides us an efficient way to transfer this information in a standard way that anyone can read....

Object Serialization in VB .NET        
Total Hits: 1635  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Serialization is the process of converting a graph of objects, into a linear sequence of bytes. That sequence of bytes can be sent elsewhere (for example, to a remote computer) and Deserialized, thereby making a clone in that remote memory of the original graph of objects. The process of serialization is very easy with .NET and its open too. Every VB 6 programmer have used this feature of Serialization knowingly or unknowingly. When any class in ActiveX dll or ActiveX exe is created , there are ...

Using serialization to emulate an assembly        
Total Hits: 82  |  Today: 0 Author: Mark Killmer       Rating:  
Read Reviews | Write Review |   Your Rating: 

When working in a team environment, factors such as limited license keys, security, or network access may hinder the creation of a test environment. In a recent project, one of my requirements was to interface with an existing .NET component. The existing component could not be duplicated in my off-site office environment, and existing security policies would not allow network access. Coding and testing the interface was looking very difficult....

Using Serialization to Persist TreeView Control (VB.NET)        
Total Hits: 79  |  Today: 0 Author: Tom John       Rating:  
Read Reviews | Write Review |   Your Rating: 

A recent post on a MS group regarding persisting TreeView data to file and apparent lack of VB.Net example lead me to write a solution as it was one of the first problems I faced as a developer and thought it would make for an interesting article for beginners. Additionally, the utilisation of serialisation to persist objects as Xml provides an introduction to a great ‘free’ way of storing data....

Persisting Your Visual Basic .NET Objects with .NET Serialization        
Total Hits: 192  |  Today: 0 Author: Jeff Cogswell.       Rating:  
Read Reviews | Write Review |   Your Rating: 

The .NET Framework provides classes that let you save your objects to a file easily. This feature, called serialization, lets you create your own file formats. Jeff Cogswell shows you how to get the most out of the .NET serialization features....

Object Serialization in Visual Basic .NET        
Total Hits: 2498  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

When building applications using objects, we are often faced with the requirement to treat all the various data within an object as a single unit. This comes into play, for instance, when you want to pass an object across the network—since you don't want to send each individual bit of object data one at a time across the network, but rather, all at once. It is also very useful if you want to implement an 'undo' function in our object; that is, the ability to reset all the object's data back to ...

COM+ and MTS, DCOM and MSMQ, Serialization in .NET        
Total Hits: 34  |  Today: 0 Author: Ken Spencer       Rating:  
Read Reviews | Write Review |   Your Rating: 

Developers frequently ask me for clarification on Microsoft's strategy for the future with regard to COM+, Microsoft® Transaction Services (MTS) with its features of JIT activation and object pooling, Microsoft Message Queuing (MSMQ), and DCOM. What's in store for Web farms versus app servers versus ASP and component integration? Since everybody's clamoring for answers, let's take these questions one at a time. First, I'll deal with the COM+ and MTS issue....

Serialize and Deserialize IEnumerable Objects        
Total Hits: 112  |  Today: 0 Author: LSteinle       Rating:  
Read Reviews | Write Review |   Your Rating: 

The process of converting the data in an object to XML is called serialization. The reverse of serialization, loading XML into the object, is called deserialization. Shallow serialization converts the public properties and fields into XML while deep serialization converts both public and private members into XML. System.Xml.Serialization.XmlSerializer is used to perform shallow serialization....

COM+ and MTS, DCOM and MSMQ, Serialization in .NET        
Total Hits: 33  |  Today: 1 Author: Ken Spencer       Rating:  
Read Reviews | Write Review |   Your Rating: 

Developers frequently ask me for clarification on Microsoft's strategy for the future with regard to COM+, Microsoft® Transaction Services (MTS) with its features of JIT activation and object pooling, Microsoft Message Queuing (MSMQ), and DCOM. What's in store for Web farms versus app servers versus ASP and component integration? Since everybody's clamoring for answers, let's take these questions one at a time. First, I'll deal with the COM+ and MTS issue....

Serializing with .NET 2.0 Generics        
Total Hits: 101  |  Today: 0 Author: Kim Major       Rating:  
Read Reviews | Write Review |   Your Rating: 

On a project I was working on, we were in the need for serialization en mass. A lot of classes had to be serializable. Following are the requirements, the stages towards a solution, and a proposed solution.

Design goals:

* It must be simple for the application programmer.
* The serialization output should be XML.
* Future changes in the serialization code must not involve making changes to the client code. E.g., we may have to encrypt the serialized object represe...

Serialize and Deserialize IEnumerable Objects        
Total Hits: 388  |  Today: 0 Author: LSteinle.       Rating:  
Read Reviews | Write Review |   Your Rating: 

The process of converting the data in an object to XML is called serialization. The reverse of serialization, loading XML into the object, is called deserialization. Shallow serialization converts the public properties and fields into XML while deep serialization converts both public and private members into XML. System.Xml.Serialization.XmlSerializer is used to perform shallow serialization. As much as I like using the XmlSerializer the limitations it has are enough to drive a man crazy. XmlSer...

Serialization in VB.NET        
Total Hits: 253  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

Serialization is the process of writing the data in a class, i.e. the values of its properties - into a string that can be written to disk, or sent to an object in a client program. It's approximately the equivalent of putting data into a DBF. So what's the big deal?There aren't any DBFs in .NET; That's the big deal....

Object Serialization in Visual Basic .NET        
Total Hits: 402  |  Today: 0 Author: Rockford Lhotka       Rating:  
Read Reviews | Write Review |   Your Rating: 

When building applications using objects, we are often faced with the requirement to treat all the various data within an object as a single unit. This comes into play, for instance, when you want to pass an object across the network—since you don't want to send each individual bit of object data one at a time across the network, but rather, all at once. It is also very useful if you want to implement an 'undo' function in our object; that is, the ability to reset all the object's data back to s...

Serializing Objects to SOAP        
Total Hits: 752  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

When we serialize an object to SOAP we are copying the object state into an XML structure with a SOAP envelope. This provides us an efficient way to transfer this information in a standard way that anyone can read....

Remote Data Access Synchronization with SQL Server 2005 Compact Edition and Visual Basic.NET        
Total Hits: 35  |  Today: 0 Author: Microsoft Corporation       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this tutorial, you will learn how to create a Microsoft Windows Forms application using Microsoft Visual Basic.NET that synchronizes data between a Microsoft SQL Server 2005 database and a Microsoft SQL Server 2005 Compact Edition database using Microsoft SQL Server 2005 Compact Edition Remote Data Access (RDA)....

Serializing & Deserializing Objects Using Standard and Binary Formatter in VB.Net        
Total Hits: 2262  |  Today: 0 Author: DevASP       Rating:  
Read Reviews | Write Review |   Your Rating: 

This Article demonstrates how to serialize and deserialize an object to/from a stream. This Article defines how we can allow the user to serialize two classes, standard/binary serialization. This Article defines how we can allows the user to serialize two classes, one with standard serialization, and one with custom serialization. The six grouped command buttons are for serializing and deserializing. The bottom two buttons allow the user to view the SOAP envelopes for the serialized objects. The...

Deserialization Progress, and More        
Total Hits: 32  |  Today: 0 Author: Stephen Toub       Rating:  
Read Reviews | Write Review |   Your Rating: 

In my Windows® Forms application, I use a BinaryFormatter to save a large amount of application state, sometimes serializing to disk very large objects. At a later point, this state file needs to be loaded and deserialized by the application, and this deserialization process can take a measurable amount of time. Currently for both serialization and deserialization, I show a marquee progress bar, but that only provides an indication to the user that something is happening. For deserialization, I'...



DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net