Click here to Skip to main content
15,886,422 members
Articles / Programming Languages / XML

XML Serialization of Complex .NET Objects

Rate me:
Please Sign up or sign in to vote.
4.86/5 (16 votes)
19 Oct 2008CPOL17 min read 131.2K   2.6K   61  
Yet another custom XML serializer, with a slightly different approach.
using System;
using System.Collections.Generic;
using System.Text;
using CommonLibrary;

namespace CustomXmlSerializerTester
{
    public class TestMeTypeConverter : CustomXmlDeserializer.ITypeConverter
    {
        public void ProcessType(ref string assemblyFullName, ref string typeFullName)
        {
            // translate types to accomodate code movement
            switch (assemblyFullName)
            {
                case "OldTestMe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null":
                    // the assembly "OldTestMe" was renamed to "TestMe" and additionally its version changed
                    assemblyFullName = "TestMe, Version=1.2.0.0, Culture=neutral, PublicKeyToken=null";
                    // the type "OldTestMe.VirtualList" was moved to another assembly
                    // and now it is called "CommonTools.Lists.VirtualList"
                    if (typeFullName.StartsWith("OldTestMe.VirtualList"))
                    {
                        // the new home is the CommonTools assembly
                        assemblyFullName = "CommonTools, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null";
                        // the namespace changed from "OldTestMe" to "CommonTools.Lists"
                        typeFullName = typeFullName.Replace("OldTestMe", "CommonTools.Lists");
                    }
                    break;
            }            
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions