|
|
|
| acAutoUpgrader, acHTTP and acWebImage components.
|
| type
|
| TacInternetOption = (ioIgnoreCertificateInvalid, ioIgnoreCertificateDateInvalid,
|
| ioIgnoreRedirectToHTTP, ioIgnoreRedirectToHTTPS,
|
| ioKeepConnection, ioNoAuthentication,
|
| ioNoAutoRedirect, ioNoCookies);
|
| TacInternetOptions := set of TacInternetOption;
|
|
|
| property InternetOptions: TacInternetOptions;
|
| The InternetOptions property is the set of options used to specify some behaviors of acHTTP component.
|
|
|
| The property is set of following options:
|
| Value | Meaning
|
| ioIgnoreCertificateInvalid | Disables checking of SSL/PCT-based certificates that are returned from the server against the host name given in the request. WinINet functions use a simple check against certificates by comparing for matching host names and simple wildcarding rules;
|
| ioIgnoreCertificateDateInvalid | Disables checking of SSL/PCT-based certificates for proper validity dates;
|
| ioIgnoreRedirectToHTTP | Disables detection of this special type of redirect. When this flag is used, WinINet functions transparently allow redirects from HTTPS to HTTP URLs;
|
| ioIgnoreRedirectToHTTPS | Disables detection of this special type of redirect. When this flag is used, WinINet functions transparently allow redirects from HTTP to HTTPS URLs;
|
| ioKeepConnection | Uses keep-alive semantics, if available, for the connection. This flag is required for Microsoft Network (MSN), NT LAN Manager (NTLM), and other types of authentication;
|
| ioNoAuthentication | Does not attempt authentication automatically;
|
| ioNoAutoRedirect | Does not automatically handle redirection;
|
| ioNoCookies | Does not automatically add cookie headers to requests, and does not automatically add returned cookies to the cookie database.
|
| CacheOptions property;
|
| CheckUpdate and Abort methods;
|
| OnProxyAuthenticationRequest events.
|