BrowserAPI
BrowserGetProxyBypass( out sBypassList : string ): boolean;
Parameter | Description |
---|---|
sBypassList | String variable that receives the list of hosts that have been set to not be accessed through a proxy. |
true if successful
false otherwise
transaction TMain var sBypassList: string; begin BrowserStart(BROWSER_MODE_DEFAULT, 800, 600); BrowserSetProxy(BROWSER_PROXY_HTTP, "proxy.mydomain.com", 8080); BrowserSetProxyBypass(false, "www.mycompany.com"); BrowserNavigate("www.mycompany.com"); BrowserGetProxyBypass(sBypassList); end TMain;