这是测试 ConfigurationElement 的属性 getters/setters 中的值的好方法吗

发布于 2024-12-21 23:13:26 字数 740 浏览 2 评论 0原文

这是我编写的用于测试应用程序的 app.config 文件值的内容,我想知道这是否是一个好方法?我直接在 MyProperty getter/setter 中抛出 ArgumentOutOfRangeException:

internal sealed class ProcessingMyPropertyElement : ConfigurationElement
{
    [ConfigurationProperty("myproperty", IsRequired = true)]
    public int MyProperty
    {
        get
        {
            if ((int)this["myproperty"] < 0 || (int)this["myproperty"] > 999)
                throw new ArgumentOutOfRangeException("myproperty");

            return (int)this["myproperty"];
        }
        set
        {
            if (value < 0 || value > 999)
                throw new ArgumentOutOfRangeException("myproperty");

            this["recurEvery"] = value;
        }
    }
 }

Here is what I've written to test values of the app.config file of my application and I want to know if it's a good way ? I throw an ArgumentOutOfRangeException directly in the MyProperty getters/setters:

internal sealed class ProcessingMyPropertyElement : ConfigurationElement
{
    [ConfigurationProperty("myproperty", IsRequired = true)]
    public int MyProperty
    {
        get
        {
            if ((int)this["myproperty"] < 0 || (int)this["myproperty"] > 999)
                throw new ArgumentOutOfRangeException("myproperty");

            return (int)this["myproperty"];
        }
        set
        {
            if (value < 0 || value > 999)
                throw new ArgumentOutOfRangeException("myproperty");

            this["recurEvery"] = value;
        }
    }
 }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绳情 2024-12-28 23:13:26

设置值时,最好检查范围并在无效时抛出异常。

得到它后,我不会抛出异常。这样,有人就可以通过手动编辑 app.config 来使应用程序崩溃。在你的 getter 中,我会将值限制在特定范围内并返回有效结果。

if ((int)this["myproperty"] < 0 )
{
     return 0;
}

if ((int)this["myproperty"] > 999 )
{
     return 999;
}

return (int)this["myproperty"]

When setting the value it is a good idea to check for the range and throw an exception when this is invalid.

On getting it, I wouldn't throw an exception. This way someone could crash the application by editing the app.config by hand. In your getter I would limit the value to the specific range and return a valid result.

if ((int)this["myproperty"] < 0 )
{
     return 0;
}

if ((int)this["myproperty"] > 999 )
{
     return 999;
}

return (int)this["myproperty"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文