Click here to Skip to main content
Licence 
First Posted 8 Aug 2006
Views 22,504
Downloads 302
Bookmarked 18 times

Simplify Reading and Writing of XML Fragments

By notmasteryet | 8 Aug 2006
This article shows how to read and write XML fragments using the XmlChunkReader and XmlChunkWriter classes.

1
1 vote, 16.7%
2
1 vote, 16.7%
3
3 votes, 50.0%
4
1 vote, 16.7%
5
3.35/5 - 6 votes
μ 3.35, σa 1.81 [?]

Introduction

This article is trying to solve two ultimate serialization problems:

  • Can an XML stream be deconstructed using multiple nested XmlReader processes;
  • Can an XML stream be assembled from multiple nested XmlWriter processes.

Solving these problems makes the using of XmlSerializer possible when you are creating XML from objects.

Using the Code

The library contains two classes: XmlChunkReader and XmlChunkWriter.

XmlChunkReader can be created using XmlReader while it’s reading XML element nodes. It can be used as a standalone XmlReader, e.g., to perform a deserialization operation. When XmlChunkReader is closed, the main reader points to the next XML node. Using XmlChunkReader helps avoid such calls as ReadInnerXml.

// read file
using (XmlTextReader r = new XmlTextReader(xmlfile))
{
    r.ReadStartElement("items");
    while (r.Read() && r.MoveToContent() == XmlNodeType.Element)
    {
        using(XmlChunkReader chunkReader = new XmlChunkReader(r))
        {
            Item item = (Item)serializer.Deserialize(chunkReader);
            Console.WriteLine(item.ToString());
        }
    }
    r.ReadEndElement();    
}

XmlChunkWriter can be created using XmlWriter. It can be used as a standalone XmlWriter, e.g., to perform serialization of objects. When XmlChunkWriter is closed, the main XmlWriter is ready to continue writing XML data. Using XmlChunkWriter helps format data in the same manner and avoids writing of XML declaration instructions in the middle of XML.

// write file
using (XmlTextWriter w = new XmlTextWriter(xmlfile, Encoding.UTF8))
{
    w.Formatting = Formatting.Indented;
    w.WriteStartElement("items");
    using (XmlChunkWriter chunkWriter = new XmlChunkWriter(w))
        serializer.Serialize(chunkWriter, new Item(1, "First"));

    using (XmlChunkWriter chunkWriter = new XmlChunkWriter(w))
        serializer.Serialize(chunkWriter, new Item(2, "Second"));
    w.WriteEndElement();
}

The library also simplifies the implementation of the IXmlSerializable interface.

The source code can be easily adapted for .NET framework version 1.1.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

notmasteryet

Software Developer

United States United States

Member

Follow on Twitter Follow on Twitter


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralGreat, just what I need! PinmemberRynus0:17 3 Jun '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 8 Aug 2006
Article Copyright 2006 by notmasteryet
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid