I want to create a WebDAV server based on WCF restful services. Is it possible to return message with custom http code 207 Multi-status? Unfortunately I cannot use WebOperationContext because System.Net.HttpStatusCode enum does not seem to support http code extensions described in webdav rfc.
Share
System.Net.HttpStatusCode is an enum over an int type, effectively just more readable code. Try using
(HttpStatusCode) 207.