I'm targetting an API where I need to send a query string without URL encoding.
response = await httpClient.GetAsync(uri).ConfigureAwait(false);
where uri could be something like this
That works fine on our dev boxes, both Win10 and a 2012R2 server (all using VS2017). However, if we deploy the application on a Win2016 server without dev environment, the sqme uri is no longer sent as-is, but is instead converted into
Is there a way I can tell the httpClient to leave my uri alone that works everywhere? The lib where this is done is a .NET standard 2.0 lib, it is consumed by a .NET standard 4.6.1 app