![]() |
![]() |
WinHTTP
|
type
|
TWinHTTPAccessType = (atPreconfig, atDirect, atProxy);
|
The TWinHTTPAccessType type contains information about possible values for AccessType property of the Proxy structure.
|
|
The AccessType property controls how the 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.
|
|
There are possible values:
|
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;
|
WinHTTP component.
|