2

我需要改进 app.config 文件中的错误报告。

我有一个包含“int”类型设置的小型测试应用程序。如果我将它在 app.config 中的值更改为不是有效整数的值,我希望会引发一个我可以捕获和报告的异常。不幸的是,有些东西正在吃异常。有没有一种简单的方法来防止这种行为并让异常传播出去?

我的 Settings.Designer.cs 文件(由 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; }
    }
}

我的 C# 测试应用程序:

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

我的 App.config 文件的相关部分(请注意,该值不是有效的整数):

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

System.Number.StringToNumber 抛出了 System.Format 异常,但有东西捕捉到它并将其丢弃,而我的 catch 块永远不会进入。在 Visual Studio 调试器输出中,我发现“在 mscorlib.dll 中发生了‘System.FormatException’类型的第一次机会异常”,但这对我没有帮助,除非进一步确认引发了异常。

我尝试在 Settings.Designer.cs 中将 IntegerValidatorAttribute 添加到我的设置属性,但这没有帮助(并且我确保 .cs 没有重新生成)。

我尝试在 main() 方法的顶部添加以下代码,但这也无济于事:

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

我曾想过实现我自己的 ConfigurationSection,但我希望有一个更简单的解决方案。

重申一下:我需要一种方法来报告 app.config 文件中的设置值错误。

(如果我破坏了 App.config 中的 XML 语法(例如,通过删除尖括号),我的 catch 块会得到一个很好的异常,其中包含我可以要求的所有细节。)

4

1 回答 1

1

您可以这样做(假设您在 app.config 中覆盖了所有设置值):

  foreach (SettingsPropertyValue propertyValue in AppConfigTests.Properties.Settings.Default.PropertyValues) {
    if (propertyValue.UsingDefaultValue) {
      throw new Exception(propertyValue.Name + " is not deserialized properly.");
    }
  }

如果您正在编写 Web 应用程序,它会在反序列化失败时触发此事件:

try {
  if (this.IsHostedInAspnet()) {
    object[] args = new object[] { this.Property, this, ex };
    Type type = Type.GetType("System.Web.Management.WebBaseEvent, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", true);
    type.InvokeMember("RaisePropertyDeserializationWebErrorEvent", BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.InvokeMethod, null, null, args, CultureInfo.InvariantCulture);
  }
}
catch {
}

否则,它只会恢复默认值,因此您唯一能做的就是遍历所有值并检查它们是否没有默认值。

于 2013-06-13T09:46:28.843 回答