I need to improve the reporting of errors in app.config files.

I have a tiny test app that includes a setting of type "int". If I change its value in app.config to something that isn't a valid integer, I'd expect an exception to get raised that I can catch and report. Unfortunately, something is eating the exception. Is there a straightforward way to prevent that behaviour and let the exception propagate out?

My Settings.Designer.cs file (generated by Visual Studio):

[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute(
    "Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {

    private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));

    public static Settings Default { get { return defaultInstance; } }

    [global::System.Configuration.UserScopedSettingAttribute()]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Configuration.DefaultSettingValueAttribute("17")]
    public int SecondSetting
    {
        get { return ((int)(this["SecondSetting"])); }
        set { this["SecondSetting"] = value; }
    }
}

My C# test app:

static void Main (string[] args)
{
    try
    {
        Console.WriteLine(AppConfigTests.Properties.Settings.Default.SecondSetting);
    }
    catch (Exception x)
    {
        Console.WriteLine(x.ToString());
    }
}

The relevant portion of my App.config file (note that the value isn't a valid integer):

<userSettings>
    <AppConfigTests.Properties.Settings>
        <setting name="SecondSetting" serializeAs="String">
            <value>1foo7</value>
        </setting>
    </AppConfigTests.Properties.Settings>
</userSettings>

A System.Format exception is getting thrown by System.Number.StringToNumber, but something is catching it and throwing it away, and my catch block never gets entered. In the Visual Studio debugger output, I found "A first chance exception of type 'System.FormatException' occurred in mscorlib.dll", but that doesn't help me except to further confirm that an exception was thrown.

I tried adding an IntegerValidatorAttribute to my setting property in Settings.Designer.cs, but that didn't help (and I made sure the .cs didn't get regenerated).

I tried adding the following code at the top of my main() method, but that didn't help either:

foreach (SettingsProperty sp in AppConfigTests.Properties.Settings.Default.Properties)
    sp.ThrowOnErrorDeserializing = true;

I've thought of implementing my own ConfigurationSection, but I'm hoping there's an easier solution.

Just to reiterate: I need a way to report errors in settings values in app.config files.

(If I break the XML syntax in App.config (by removing an angle bracket, for example), my catch block gets a nice exception with all the detail I could ask for.)

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.