我想使用带有RestSharp的Restful API实现删除功能。我已经实现了GET和POST功能。但是使用此删除功能,我不会从API获得任何反馈,只能获得httpresponse。我的问题是如何制作我的代码以便我可以执行删除功能?我已经有了这个:
// var url = string.Format("url");
// Construct the request.
// var request = new RestRequest(url, Method.DELETE);
// //IRestResponse<> response;
// //response = await restClient.ExecuteTaskAsync<>(request);
// //return response.Data;
答案 0 :(得分:1)
试试吧
var client = new RestClient(url);
var request = new RestRequest(Method.DELETE);
IRestResponse response = client.Execute(request);