BrowserAPI
BrowserGetProxy( out sProxy : string, in nProxyType : number optional ): boolean;
| Parameter | Description |
|---|---|
| sProxy | A string buffer that receives the proxies. |
| nProxyType | Proxy type. Can be one of the following types:
|
true if successful
false otherwise
transaction TMain
var
sProxy: string;
begin
BrowserStart(BROWSER_MODE_DEFAULT, 800, 600);
BrowserSetProxy(BROWSER_PROXY_HTTP, "proxy.mydomain.com", 8080);
BrowserNavigate("www.mycompany.com");
BrowserGetProxy(sProxy, BROWSER_PROXY_HTTP);
end TMain;