cefsharp에서 Auth와 함께 프록시를 사용하려고합니다. 이 코드를 시도했지만 인증없이 프록시로 작업 중입니다. 인증을 설정하려면 어떻게해야합니까? cefsharp 프록시 인증이 필요합니다.
Cef.UIThreadTaskFactory.StartNew(delegate
{
string ip = "IP";
string port = "PORT";
var rc = chrome.GetBrowser().GetHost().RequestContext;
var dict = new Dictionary<string, object>();
dict.Add("mode", "fixed_servers");
dict.Add("server", "" + ip + ":" + port + "");
string error;
bool success = rc.SetPreference("proxy", dict, out error);
});
내가이 링크를 발견하지만 난 그것을
https://bitbucket.org/chromiumembedded/cef/wiki/GeneralUsage.md#markdown-header-proxy-resolution 내가 beginer에있어 몇 가지 코드를 작성하시기 바랍니다하는 방법을 이해하지 않습니다.
문서는 내가 예를 들어 당신을 도울 수 https://github.com/cefsharp/CefSharp/wiki/General-Usage#proxy-resolution입니다. 행운을 빌어 요! – amaitland