Microsoft > WCF >> Code Snippets Views : 6735
DataContractSerialization
Rate This Article :

DataContract Serialization in WCF

This article explains about Data “Serialization and De-Serialization of an Object” in WCF with very easy steps.

Step 1: Create a Model Class

   public class Student

    {

        public string Name { get; set; }

 

        public double Salary { get; set; }

 

        public string Address { get; set; }

    }

 

Step 2: Use “DataContractSerializer” to serialize object into XML.

private static void Serialize(string filename)

        {

            var student = new Student();

            student.Name = "TestName";

            student.Salary = 700;

            student.Address = "TestAddress";

 

            using (FileStream ioStream = new FileStream(filename, FileMode.Create))

            {

                DataContractSerializer serializer = new DataContractSerializer(typeof(Student));

                serializer.WriteObject(ioStream, student);

            }

        }


 DataContractSerializer will write the object in the XML formation in the given path.

XMLGeneration.png


Step 3: Use “DataContractSerializer” & “XmlDictionaryReader” to de-serialize xml to Object.

private static void DeSerialize(string fileName)

        {

            using (FileStream ioStream = new FileStream(fileName, FileMode.Open))

            {

                DataContractSerializer serializer = new DataContractSerializer(typeof(Student));

                XmlDictionaryReader xmlDictonaryReader = XmlDictionaryReader.CreateTextReader(ioStream, new XmlDictionaryReaderQuotas());

                var student = (Student)serializer.ReadObject(xmlDictonaryReader);

                xmlDictonaryReader.Close();

 

                Console.WriteLine("Name : " + student.Name);

                Console.WriteLine("Salary : " + student.Salary);

                Console.WriteLine("Address :" + student.Address);

            }

        }

OutPut

XMLSerialization and De-Serialization.png


About Author
Raj Kumar
Total Posts 55
Developer in .Net!
Comment this article
Name*
Email Address* (Will not be shown on this website.)
Comments*
Enter Image Text*
   
View All Comments
Comments not posted yet!! Please post your comments on this article.
  Privacy   Terms Of Use   Contact Us
© 2016 Developerin.Net. All rights reserved.
Trademarks and Article Images mentioned in this site may belongs to Microsoft and other respective trademark owners.
Articles, Tutorials and all other content offered here is for educational purpose only and its author copyrights.