6 references to Delete
System (6)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (2)
346(ctx.RequestMethod >= HttpMethod.Post && ctx.RequestMethod <= HttpMethod.Delete || ctx.RequestMethod == HttpMethod.Other) 450if (ctx.RequestMethod >= HttpMethod.Post && ctx.RequestMethod <= HttpMethod.Delete)
net\System\Net\Cache\FtpRequestCacheValidator.cs (3)
87case WebRequestMethods.Ftp.DeleteFile: RequestMethod = HttpMethod.Delete;break; 404if (RequestMethod == HttpMethod.Delete || RequestMethod == HttpMethod.Put) 406if (RequestMethod == HttpMethod.Delete ||
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
200case "DELETE": RequestMethod = HttpMethod.Delete; break;