.NET 中是否有包含 WebDAV http 状态代码的枚举或类
我一直在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有定义这样的文件——我对正在构建的 API 有相同的要求,并决定简单地对其进行类型转换(这可以使用 int 枚举),如下所示:
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: