Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个基于 WCF RESTful 服务的 WebDAV 服务器。是否可以使用自定义 http 代码 207 多状态返回消息?不幸的是,我不能使用 WebOperationContext,因为 System.Net.HttpStatusCode 枚举似乎不支持 webdav rfc 中描述的 http 代码扩展。
System.Net.HttpStatusCode 是 int 类型的枚举,实际上只是更具可读性的代码。尝试使用(HttpStatusCode) 207.
(HttpStatusCode) 207