![]() |
![]() ![]() ![]() |
acWebImage, acHTTP and acAutoUpgrader components as subproperty of HTTPProxy structure.
|
type
|
TacHTTPAccessType = (atPreconfig, atDirect, atProxy);
|
|
property AccessType: TacHTTPAccessType;
|
The AccessType property controls how the acHTTP component should access the remote server to download data. The AccessType can be direct or via the proxy server. If you'd like to use the access type previously configured in the Control Panel, leave the AccessType = atPreconfig.
|
|
Values Meaning
|
atPreconfig | retrieves the proxy or direct configuration from the registry (user can configure the access type in the Control Panel);
|
atDirect | uses the direct connection and resolves all host names locally;
|
atProxy | access the remote data via the proxy server. Passes all requests to the proxy, unless a proxy bypass list is not empty and the name to be resolved bypasses the proxy. To specify the proxy server and port use ProxyServer and ProxyPort properties. To configure bypass list use ProxyBypass property.
|
ProxyServer, ProxyPort and ProxyBypass properties.
|