Files
insomnia/packages/insomnia-httpsnippet/test/fixtures/output/csharp/restsharp/query.cs
2018-03-26 13:50:43 -07:00

4 lines
182 B
C#
Executable File

var client = new RestClient("http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);