本文介绍了如何使一个HTTP PUT请求?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
什么是构成在C#中休息PUT请求的最佳方式?
请求必须也发送对象的URI不存在。
解决方案
使用(VAR的客户=新System.Net.WebClient()){
客户端.UploadData(地址,PUT,数据);
}
What is the best way to compose a rest PUT request in C#?
The request has to also send an object not present in the URI.
解决方案
using(var client = new System.Net.WebClient()) {
client.UploadData(address,"PUT",data);
}
这篇关于如何使一个HTTP PUT请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!