0 votes
by (120 points)
edited by
GET https://www.yander.ru/ HTTP/1.1
Host: www.yander.ru
User-Agent: Rebex Web Client
Accept-Encoding: gzip, deflate
Connection: keep-alive
  1. How to disable sending User-Agent header?
  2. How to manipulate with Accept-Encoding header (disable/only gzip/only deflate)?
Applies to: Rebex HTTPS

1 Answer

0 votes
by (70.2k points)
edited by

Update: This feature has been added in version 2017 R6.1.


To disable sending User-Agent header:

request.UserAgent = null;

To manipulate Accept-Encoding header:

request.AutomaticDecompression = DecompressionMethods.None;

or

request.Headers[HttpRequestHeader.AcceptEncoding] = "custom-value";

The request variable can be created like this:

var creator = new HttpRequestCreator();
HttpRequest request = creator.Create("url");

or this:

creator.Register();
HttpRequest request = (HttpRequest)WebRequest.Create("url");

Unfortunately, it is not possible to achieve this in current version.

However, it is very easy to implement it. It will be changed in the near future.

If you are interested in a beta version, please let us know.

by (120 points)
I'm interested.
by (70.2k points)
edited by
Before I managed to send you beta version, we released the requested features publicly: https://rebex.net/total-pack/history.aspx#2017R6.1
...