.NET 中的 RESTful HTTP DELETE 方法
我是网络服务新手。我正在我的项目中测试 API。在以前的版本中,公司使用了 GET 和 POST 方法,但没有使用 PUT 和 DELETE 方法。对于 HTTP DELETE 方法,我浏览了各种网站,在其中找到了 GET 和 POST 方法的示例代码片段,但没有找到 DELETE 和 PUT 方法的示例代码片段(为什么?)。
谁能给我一个 RESTful HTTP DELETE 方法的示例代码片段 (C#) 并解释如何调用 DELETE 请求?
I am new to web services. I am dealing with testing APIs in my project. In the previous version the company used GET and POST methods but not PUT and DELETE methods. For the HTTP DELETE method, I have browsed various websites where I found the example code snippets for GET and POST methods, but not for DELETE and PUT methods (why?).
Can anyone give me an example code snippet (C#) for RESTful HTTP DELETE method and explain how to call the DELETE request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看以下代码片段:
在响应对象中,您应该检查 StatusCode 属性(如果一切正常,它应该是 200 或 204,请参阅 此处 了解更多信息)。
Check out the following code snippet:
In the response object you should check the StatusCode property (it should be 200 or 204 if everything goes right, see here for more info).