I am mirroring another request so I have an array with all the headers. I add each of them with "url".WithHeaders(headersDictionary).
But when I test the request I get a second value in the Connection header.
The request is made like this:
req = ("https://httpbin.org/post").WithHeaders(headers).WithTimeout(60)
req.SendAsync(New Net.Http.HttpMethod("POST"), New Net.Http.StringContent(postData))
Are there other headers that may be automatically added or modified? Like Expect100-Continue, for example.
