show/hide this revision's text 2 SPAG

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.

Public Class ConfigTest
    Inherits ConfigurationSection
    <ConfigurationProperty("JunkProperty", IsRequired:=True)> _
    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

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.

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 it's its capabilities was to use Reflector to see how the .NET framework uses the API internally.

show/hide this revision's text 1

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.

Public Class ConfigTest
    Inherits ConfigurationSection
    <ConfigurationProperty("JunkProperty", IsRequired:=True)> _
    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

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.

I've used 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 it's capabilities was to use Reflector to see how the .NET framework uses the API internally.