Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Formatting an Xml string in Silverlight

0.00/5 (No votes)
12 Jul 2011 1  
Formatting XML in a string for visual presentation.

Introduction


If you have unformatted XML in a string and need to format it for visual presentation, e.g., for sending it to your UI text display control, here's how to do it in Silverlight 4.0.


Silverlight doesn't have the XmlDocument class. You'd otherwise be able to do it as Ian Randell does in his article.


Instead, Silverlight currently (Jan 2011) offers the XDocument and XmlWriter classes. So you'd do it with these two classes as shown below:


Using the code


Just call the XmlFormat method below and display the result, i.e., with indenting and line breaks, in your UI control.


C#
using System.Xml;
using System.Xml.Linq;
using System.Text;
/// <summary>
/// Formats unformatted xml string input.
/// </summary>
/// <param name="stringXml">unformatted xml string</param>
/// <returns>Formatted xml string based on <paramref name="stringXml" /></returns>
private string FormatXml(string stringXml)
{
    StringReader stringReader = new StringReader(stringXml);
    //XDocument represents an XML Document,
    //allowing in memory processing of it (primarily via Linq).
    XDocument xDoc = XDocument.Load(stringReader); 
    var stringBuilder = new StringBuilder();
    XmlWriter xmlWriter = null;
    try
    {
        var settings = new XmlWriterSettings();
        settings.Indent = true;
        settings.ConformanceLevel = ConformanceLevel.Auto;
        settings.IndentChars = " ";
        settings.OmitXmlDeclaration = true;
        //The XDocument can write to an XmlWriter.
        //The writer formats the well-formed xml.
        //If not well-formed no formating will occur.
        xmlWriter = XmlWriter.Create(stringBuilder, settings);// xd.cre(sw);
        xDoc.WriteTo(xmlWriter);
    }
    finally
    {
        if (xmlWriter != null)
            xmlWriter.Close();
    }
    return stringBuilder.ToString();
}

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