0
WebControlを使用してプロキシを使用してWebサイトを開こうとしています。 私は見つけることができるすべてを試しましたが、何も働かなかった。Awesomium WebControlがWebSessionと連携していません
私はWebControl、WebPreferences & WebSessionを作成していますが、コードを実行すると何も表示されません。
string Proxy = "208.83.6.19:3128";
WebControl wc = new WebControl();
Browsers.Controls.Add(wc);
wc.Dock = DockStyle.Fill;
WebSession session = WebCore.CreateWebSession(new WebPreferences() { ProxyConfig = Proxy, SmoothScrolling = true });
wc.WebSession = session;
wc.Source = new Uri("http://checkip.dyndns.com/", UriKind.Absolute);
私が得ることができるすべてのおかげで!