I am using EO.Webrowser 2018 version. I would like to send an additional header for authentication with the Load request.
The below code with .Net webBrowser is working fine.
Code: C#
string auth = System.Convert.ToBase64String(System.Text.Encoding.ASCII.GetBytes(userName + ":" + password));
string headers = "Authorization: Basic " + auth + "\r\n";
_Browser.Navigate(serverUrl, string.Empty, null, headers);
Could you please let me know the equivalent for do the same operation in EO Webbrowser control? Thanks.