How do I store an XML value in my .NET App.Config file - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T21:24:20Zhttp://stackoverflow.com/feeds/question/172646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172646/how-do-i-store-an-xml-value-in-my-net-app-config-file1How do I store an XML value in my .NET App.Config fileNat2008-10-05T20:54:14Z2008-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><![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><FieldRef Name='LinkfileName' Nullable='True'/><FieldRef Name='Web' Nullable='True'/></code></p>
http://stackoverflow.com/questions/172646/how-do-i-store-an-xml-value-in-my-net-app-config-file/172672#1726723Answer by Robert Rossney for How do I store an XML value in my .NET App.Config fileRobert Rossney2008-10-05T21:08:05Z2008-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>&lt;FieldRef Name=&quot;Linkfilename&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>