How can I write to my own app.config using a strongly typed object? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T15:49:44Z http://stackoverflow.com/feeds/question/1044477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object 4 How can I write to my own app.config using a strongly typed object? Ryan ONeill 2009-06-25T15:07:23Z 2009-07-08T20:25:37Z <p>The following code has two flaws, I can't figure out if they are bugs or by design. From what I have seen it should be possible to write back to the app.config file using the Configuration.Save and according to <a href="http://www.codeproject.com/KB/cs/SystemConfiguration.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/SystemConfiguration.aspx</a> the code should work.</p> <p>The bugs are shown in the source below and appear when you try to set the property or save the config back out.</p> <pre><code>Imports System.Configuration Public Class ConfigTest Inherits ConfigurationSection &lt;ConfigurationProperty("JunkProperty", IsRequired:=True)&gt; _ Public Property JunkProperty() As String Get Return CStr(Me("JunkProperty")) End Get Set(ByVal value As String) ' *** Bug 1, exception ConfigurationErrorsException with message "The configuration is read only." thrown on the following line. Me("JunkProperty") = value End Set End Property Public Sub Save() Dim ConfigManager As Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) ' The add / remove is according to http://www.codeproject.com/KB/cs/SystemConfiguration.aspx ConfigManager.Sections.Remove("ConfigTest") ' *** Bug 2, exception InvalidOperationException thrown with message "Cannot add a ConfigurationSection that already belongs to the Configuration." ConfigManager.Sections.Add("ConfigTest", Me) ConfigManager.Save(ConfigurationSaveMode.Full, True) End Sub Public Shared Sub Main() Dim AppConfig As ConfigTest = TryCast(ConfigurationManager.GetSection("ConfigTest"), ConfigTest) AppConfig.JunkProperty = "Some test data" AppConfig.Save() End Sub ' App.Config should be: ' &lt;?xml version="1.0" encoding="utf-8" ?&gt; '&lt;configuration&gt; ' &lt;configSections&gt; ' &lt;section name="ConfigTest" type="ConsoleApp.ConfigTest, ConsoleApp" /&gt; ' &lt;/configSections&gt; ' &lt;ConfigTest JunkProperty="" /&gt; '&lt;/configuration&gt; End Class </code></pre> <p>I'd like to do it this way so that on the first run of the app I check for the properties and then tell the user to run as admin if they need to be set, where the UI would help them with the settings. I've already 'run as admin' to no effect.</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1051554#1051554 0 Answer by pho3nix for How can I write to my own app.config using a strongly typed object? pho3nix 2009-06-26T22:28:14Z 2009-06-26T22:28:14Z <p>Maybe you don't know Portuguese or c# but this is you want <a href="http://www.linhadecodigo.com.br/Artigo.aspx?id=1613" rel="nofollow">http://www.linhadecodigo.com.br/Artigo.aspx?id=1613</a></p> <p>using BuildProvider from asp.net</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1075859#1075859 0 Answer by Wilhelm for How can I write to my own app.config using a strongly typed object? Wilhelm 2009-07-02T18:08:44Z 2009-07-02T18:08:44Z <p>After loading a configuration it is readonly by default, principally because you have not overriden the IsReadOnly property. Try to override it.</p> <p>¿Is there something that prevents you from using a setting?</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1079439#1079439 0 Answer by Ryan ONeill for How can I write to my own app.config using a strongly typed object? Ryan ONeill 2009-07-03T13:48:13Z 2009-07-03T13:48:13Z <p>Looks like it is not possible by design. App.config is normally protected as it resides along with the app in the Program Files directory so must be amended at installation time by the installer.</p> <p>Pity really, I'd like the app to have settings that an admin can set.</p> http://stackoverflow.com/questions/1044477/how-can-i-write-to-my-own-app-config-using-a-strongly-typed-object/1100325#1100325 1 Answer by RichardOD for How can I write to my own app.config using a strongly typed object? RichardOD 2009-07-08T20:18:24Z 2009-07-08T20:25:37Z <p>Your code doesn't really make any sense. I took your example code and turned it into a simple example that works. Please note this is not best practise code, merely an example to aid you on your journey of learning the configuration API.</p> <pre><code>Public Class ConfigTest Inherits ConfigurationSection &lt;ConfigurationProperty("JunkProperty", IsRequired:=True)&gt; _ Public Property JunkProperty() As String Get Return CStr(Me("JunkProperty")) End Get Set(ByVal value As String) ' *** Bug 1, exception ConfigurationErrorsException with message "The configuration is read only." thrown on the following line. Me("JunkProperty") = value End Set End Property Public Overrides Function IsReadOnly() As Boolean Return False End Function Public Shared Sub Main() Dim config As Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) Dim AppConfig As ConfigTest = config.GetSection("ConfigTest") AppConfig.JunkProperty = "Some test data" config.Save() End Sub End Class </code></pre> <p>This code will open the config file, modify the attribute JunkProperty and persist it back it the executable's configuration file. Hopefully this will get you started- it looks like you need to read about the configuration API a bit more.</p> <p>I've used the API to create configuration sections for large scale enterprise apps, with several 1000 of lines of custom hierarchical config (my config was readonly though). The configuration API is very powerful once you've learnt it. One way I found out more about its capabilities was to use Reflector to see how the .NET framework uses the API internally.</p>