.NET 中是否有包含 WebDAV http 状态代码的枚举或类

发布于 2024-11-17 19:48:12 字数 1019 浏览 3 评论 0原文

我一直在使用 HttpStatusCode 枚举(msdn) 返回网络请求中的错误,但现在我想返回 422,“不可处理的实体”(webdav.org),我发现它不是在枚举的成员中。

我在 .NET 框架中找不到任何内容,我想 如果我可以帮助的话(即如果确实存在某些东西),请避免自定义解决方案(devio.wordpress.org)。

场景是这样的:客户端发出请求,并且在服务器中进行验证。经过快速搜索后,我决定 422 也许是 最合适,或也许是400

那么,有人知道 .NET 4.0 中是否有包含 WebDAV http 状态代码的枚举或类吗?

谢谢你!

I have been using the HttpStatusCode enumeration (msdn) to return errors in web requests, but now that I want to return a 422, "Unprocessable Entity" (webdav.org), I see that it is not among the enum's members.

I am not able to find anything in the .NET framework, and I would like to avoid custom solutions (devio.wordpress.org) if I can help it (i.e. if something does indeed exist).

The scenario is this: The client posts a request, and validation occurs in the server. After a quick search on SO I decided that 422 is perhaps the most appropriate, or maybe a 400.

So, does anyone know if there is an enum or class in .NET 4.0 containing the WebDAV http status codes?

Thank you!

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

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

发布评论

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

评论(1

心意如水 2024-11-24 19:48:12

不,没有定义这样的文件——我对正在构建的 API 有相同的要求,并决定简单地对其进行类型转换(这可以使用 int 枚举),如下所示:

try {
    if (!Repository.Cancel(IdHelper.Decrypt(id))) {
        return Request.CreateResponse(HttpStatusCode.NotFound, "Booking not found");
    }
}
catch (Exception x) {
    // typecast 422 to enum because it's not defined in HttpStatusCode
    return Request.CreateResponse((HttpStatusCode)422, x.Message);
}

No, no such file is defined -- I had the same requirements for an API I'm building and decided to simply typecast it (which is possible with int enums) like this:

try {
    if (!Repository.Cancel(IdHelper.Decrypt(id))) {
        return Request.CreateResponse(HttpStatusCode.NotFound, "Booking not found");
    }
}
catch (Exception x) {
    // typecast 422 to enum because it's not defined in HttpStatusCode
    return Request.CreateResponse((HttpStatusCode)422, x.Message);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文