![]() Sub-properties |
![]() ![]() ![]() |
acAutoUpgrader, acHTTP and acWebImage components.
|
type
|
TacHTTPAccessType = (atPreconfig, atDirect, atUseProxy);
|
TacHTTPProxy = class
|
published
|
property AccessType: TacHTTPAccessType; // 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: TacHTTPProxy;
|
The Proxy structure controls the connection type for the AutoUpgrader component and settings for estabilishing connection via proxy. Connection type (AccessType) can be "pre-configured" (AutoUpgrader 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.
|