|
|
|
| auHTTP and auAutoUpgrader components.
|
| type
|
| TauInternetOption = (ioIgnoreCertificateInvalid, ioIgnoreCertificateDateInvalid,
|
| ioIgnoreUnknownCertificateAuthority,
|
| ioIgnoreRedirectToHTTP, ioIgnoreRedirectToHTTPS,
|
| ioKeepConnection, ioNoAuthentication,
|
| ioNoAutoRedirect, ioNoCookies);
|
| TauInternetOptions := set of TauInternetOption;
|
|
|
| property InternetOptions: TauInternetOptions;
|
| The InternetOptions property is the set of options used to specify some behaviors of auHTTP 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;
|
| ioIgnoreUnknownCertificateAuthority | Specifies whether the component should ignore unknown certificate authority problems, if the server's SSL certificate has been "signed", but by unknown or untrusted authority;
|
| 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;
|
| Read method;
|
| OnHeaderInfo, OnRedirected and OnProxyAuthenticationRequest events.
|