当路径为空时 web.config 安全性的位置元素“”而不是“。”

发布于 2024-11-07 18:53:50 字数 637 浏览 2 评论 0原文

我正在使用夜间 resharper 版本之一,最近我刚刚遇到它指出这条消息“位置元素未使用:路径为空”,给出以下 web.config 代码

 <location path="">
    <system.web>
      <authorization>
        <allow roles="Administrator" />
        <deny users="*" />
      </authorization>
    </system.web>
  </location>

我发现来自 resharper 的此声明是可疑的,因为我已经使用过这样的位置元素,没有任何问题。

空白路径是否只是将其默认为 "." 作为 MSDN 说是路径属性的默认值?

使 功能等效吗?

I'm using one of the nightly resharper builds and recently I just came across it pointing out this message "Location element is unusued: path is empty" given the following web.config code

 <location path="">
    <system.web>
      <authorization>
        <allow roles="Administrator" />
        <deny users="*" />
      </authorization>
    </system.web>
  </location>

I find this statement from resharper to be dubious being that I have used location elements like this without issue.

Is the blank path just defaulting it to "." as the MSDN says is the default value of the path property?

Making <location path=""> and <location path="."> functionally equivalent?

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

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

发布评论

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

评论(2

别在捏我脸啦 2024-11-14 18:53:50

仅当您不覆盖它时,path 的默认值为 "." 在功能上等同于 - 但 代码> 不同。不过,不应该使用空白路径;如果它被使用,那很可能是 .net 处理空路径的方式中的一个错误。

The default value for path is "." only when you don't override it; this, <location> is functionally equivalent to <location path="."> - but <location path=""> is different. A blank path though isn't supposed to get used; if it ever gets used, that's very likely a bug in the way .net treats empty paths.

太傻旳人生 2024-11-14 18:53:50

这个错误无疑是雷沙珀过于热心的另一个例子。 Microsoft 建议在 ASP.NET 4 的重大更改中使用空白路径。

然而根据 MSDN

使用缺少路径属性的位置会将配置设置应用于当前目录和所有子目录。

因此您可以省略路径属性,这可以防止 Resharper 错误。

This error is surely another example of Resharper's over-zealousness. Microsoft advise to use a blank path in the breaking changes for ASP.NET 4.

However according to MSDN,

Using location with a missing path attribute applies the configuration settings to the current directory and all child directories.

so you can possibly just omit the path attribute, which prevents the Resharper error.

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