|
Sub-properties |
|
| auHTTP and auAutoUpgrader components.
|
| type
|
| TauHTTPAccessType = (atPreconfig, atDirect, atUseProxy);
|
| TauHTTPProxy = class
|
| published
|
| property AccessType: TauHTTPAccessType; // atPreconfig by default
|
| property ProxyServer: String;
|
| property ProxyPort: Integer; // 8080 by default
|
| property ProxyBypass: TStrings; // 127.0.0.1 by default
|
| property ProxyUsername: String;
|
| property ProxyPassword: String;
|
| end;
|
|
|
| property Proxy: TauHTTPProxy;
|
| The Proxy structure controls the connection type for the auHTTP component and settings for estabilishing connection via proxy. Connection type (AccessType) can be "pre-configured" (auHTTP will use settings from Control Panel), direct, or via specified proxy server.
|
|
|
| If proxy requires authentication write OnProxyAutenticationRequest event handler to prompt and specify user's login information.
|
| OnProxyAuthenticationRequest event.
|