I am trying too get CefSharp to auto resolve proxy settings. Chrome can do it. You can even change the proxy setting while Chrome is running and Chrome will react on it.
I am using proxy-auto-detect. But it's not working Can anyone confirm that its works in CefSharp v.63.0.3
settings.CefCommandLineArgs.Add("proxy-auto-detect", "1");
The only way I can get proxy settings to work is if I set it my self
settings.CefCommandLineArgs.Add("proxy-pac-url", autoConfigUrl);
settings.CefCommandLineArgs.Add("proxy-server", proxy.ProxyAddress.Replace(' ', ';'));