We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
curl http://url1.example.com http://url2.example.com
using (var httpClient = new HttpClient()) { using (var request = new HttpRequestMessage(new HttpMethod("GET"), "http://url1.example.com/")) { var response = await httpClient.SendAsync(request); } }
2 requests. Probably a foreach around request statement.
curl --data name=curl http://url1.example.com http://url2.example.com
using (var httpClient = new HttpClient()) { using (var request = new HttpRequestMessage(new HttpMethod("POST"), "http://url1.example.com/")) { request.Content = new StringContent("name=curl", Encoding.UTF8, "application/x-www-form-urlencoded"); var response = await httpClient.SendAsync(request); } }
2 requests
The text was updated successfully, but these errors were encountered:
olsh
No branches or pull requests
Example, send two GETs:
Result
Expect
2 requests. Probably a foreach around request statement.
Example, send two POSTs:
Result
Exepected
2 requests
The text was updated successfully, but these errors were encountered: