为Curl命令创建RestSharp等效项

时间:2017-07-19 06:07:00

标签: c# curl restsharp

这是卷曲。

curl -H "Content-Type: application/json" -vX POST -d "[\"Channel1.Device1.tag1\"]" host_name/read

我需要将其转换为restSharp代码,

此刻,我正在做,

var client = new RestClient("host_name/read");

var request = new RestRequest( Method.POST);

IRestResponse response = client.Execute(request);
var content = response.Content; // raw content as string

我不知道如何修复此-d参数。

1 个答案:

答案 0 :(得分:0)

我终于能够解决这个问题了。请参阅以下链接,了解它的作用就像魅力一样。

http://www.hackered.co.uk/articles/sending-json-strings-with-restsharp