BrowserGetProxyBypass

Action

Retrieves the names of hosts that are not to be accessed through a proxy.
Note: This function only works with Internet Explorer.

Include file

BrowserAPI

Syntax

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.

Return value

  • true if successful

  • false otherwise

Example

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;