Add header to IpHttpClientChannel

Is there any way to add a custom header to the IpHttpClientChannel using the RemObjects.SDK.dll version 10.0.0.1521 (netstandard) or later?

Hi,

you can set HTTP headers via IHttpClientChannel interface like

      var x := new RemObjects.SDK.IpHttpClientChannel();
      (x as RemObjects.SDK.IHttpClientChannel).Header['tag'] := 'value';