How do I store an XML value in my .NET App.Config file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:24:20Z http://stackoverflow.com/feeds/question/172646 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172646/how-do-i-store-an-xml-value-in-my-net-app-config-file 1 How do I store an XML value in my .NET App.Config file Nat 2008-10-05T20:54:14Z 2008-10-05T21:08:05Z <p>I am trying to store an xml value in my app.config file. The app.config does not like this and I cannot use the <code>&lt;![CDATA[</code> construct to ignore the XML'ness of my value.</p> <p>Is there a way to do it?</p> <p>Value example:<code>&lt;FieldRef Name='LinkfileName' Nullable='True'/&gt;&lt;FieldRef Name='Web' Nullable='True'/&gt;</code></p> http://stackoverflow.com/questions/172646/how-do-i-store-an-xml-value-in-my-net-app-config-file/172672#172672 3 Answer by Robert Rossney for How do I store an XML value in my .NET App.Config file Robert Rossney 2008-10-05T21:08:05Z 2008-10-05T21:08:05Z <p>You can save an XML document as text in an attribute value if you escape the character entities:</p> <pre><code>&amp;lt;FieldRef Name=&amp;quot;Linkfilename&amp;quot; ... </code></pre> <p>You can then use XmlDocument.Load() to parse the text value.</p> <p>Note that this won't work for your example because your value is an XML document fragment and not a well-formed XML document. You either need to wrap it in an enclosing document element (whose markup will still be escaped) or use a properly-initialized XmlReader to process the value once you've retrieved it from the configuration.</p>