-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
41 lines (32 loc) · 1.47 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System.Diagnostics;
using System.Net;
var socketsHandler = new SocketsHttpHandler
{
// Set this to false to make it send all requests using only 1 connection
EnableMultipleHttp2Connections = false
};
HttpClient myHttpClient = new HttpClient(socketsHandler)
{
DefaultRequestVersion = HttpVersion.Version20,
DefaultVersionPolicy = HttpVersionPolicy.RequestVersionExact
};
string requestUrl = "https://httpbin.org/get";
var stopwatch = Stopwatch.StartNew();
var tasks = Enumerable.Range(1, 10).Select(i => Task.Run(async () =>
{
try
{
Console.WriteLine($"* GET {requestUrl}. Iteration: {i}");
myHttpClient.DefaultRequestHeaders.Date = DateTime.Now;
HttpResponseMessage response = await myHttpClient.GetAsync(requestUrl);
response.EnsureSuccessStatusCode();
Console.WriteLine($"[+] Request Time At Iteration {i}: {myHttpClient.DefaultRequestHeaders.Date}\n Server Time At Iteration {i}: {response.Headers.Date}\n Response HttpVersion for iteration {i}: {response.Version}\n Elapsed Time At Iteration {i}: {stopwatch.ElapsedMilliseconds}\n\tTime Diff: {response.Headers.Date - myHttpClient.DefaultRequestHeaders.Date}");
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine($"- Response Body Length for iteration {i} is: {responseBody.Length}");
}
catch (HttpRequestException e)
{
Console.WriteLine($"[-] HttpRequestException : {e.Message}");
}
}));
try { await Task.WhenAll(tasks); } catch { /* pass! */ }