-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
correct the casing of Method enums in RestSharp snippets
Ensure that code snippets use enum members that are pascal cased and not upper cased. For example use `Method.Get` instead of `Method.GET` to ensure the snippets can compile. fixes #365
- Loading branch information
1 parent
723581e
commit 7085ab5
Showing
17 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/targets/csharp/restsharp/fixtures/application-form-encoded.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "application/x-www-form-urlencoded"); | ||
request.AddParameter("application/x-www-form-urlencoded", "foo=bar&hello=world", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "application/json"); | ||
request.AddParameter("application/json", "{\"number\":1,\"string\":\"f\\\"oo\",\"arr\":[1,2,3],\"nested\":{\"a\":\"b\"},\"arr_mix\":[1,\"a\",{\"arr_mix_nested\":{}}],\"boolean\":false}", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddCookie("foo", "bar"); | ||
request.AddCookie("bar", "baz"); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var client = new RestClient("https://mockbin.com/har"); | ||
var request = new RestRequest(Method.GET); | ||
var request = new RestRequest(Method.Get); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "application/json"); | ||
request.AddParameter("application/json", "{\n \"foo\": \"bar\"\n}", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "application/json"); | ||
request.AddParameter("application/json", "{\"foo\":null}", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "multipart/form-data; boundary=---011000010111000001101001"); | ||
request.AddParameter("multipart/form-data; boundary=---011000010111000001101001", "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"foo\"; filename=\"hello.txt\"\r\nContent-Type: text/plain\r\n\r\nHello World\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"bar\"\r\n\r\nBonjour le monde\r\n-----011000010111000001101001--\r\n", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "multipart/form-data; boundary=---011000010111000001101001"); | ||
request.AddParameter("multipart/form-data; boundary=---011000010111000001101001", "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"foo\"; filename=\"hello.txt\"\r\nContent-Type: text/plain\r\n\r\n\r\n-----011000010111000001101001--\r\n", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
2 changes: 1 addition & 1 deletion
2
src/targets/csharp/restsharp/fixtures/multipart-form-data-no-params.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("Content-Type", "multipart/form-data"); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("Content-Type", "multipart/form-data; boundary=---011000010111000001101001"); | ||
request.AddParameter("multipart/form-data; boundary=---011000010111000001101001", "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"foo\"\r\n\r\nbar\r\n-----011000010111000001101001--\r\n", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var client = new RestClient("http://mockbin.com/har?foo%5Bbar%5D=baz%2Czap&fiz=buz&key=value"); | ||
var request = new RestRequest(Method.GET); | ||
var request = new RestRequest(Method.Get); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var client = new RestClient("http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value"); | ||
var request = new RestRequest(Method.GET); | ||
var request = new RestRequest(Method.Get); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.GET); | ||
var request = new RestRequest(Method.Get); | ||
IRestResponse response = client.Execute(request); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
var client = new RestClient("http://mockbin.com/har"); | ||
var request = new RestRequest(Method.POST); | ||
var request = new RestRequest(Method.Post); | ||
request.AddHeader("content-type", "text/plain"); | ||
request.AddParameter("text/plain", "Hello World", ParameterType.RequestBody); | ||
IRestResponse response = client.Execute(request); |