|
|
|
|
|
IgnoreError (Property) In french: IgnoreErreur
The IgnoreError property gets and sets the different certificate errors ignored by the HTML Display and WEBDEV Page controls. This property allows you to run websites with non-compliant certificates. Caution: Using this property may pose security risks and should only be used to display legitimate websites in the control. HTM_WebPage.IgnoreError = httpIgnoreExpiredCertificate + httpIgnoreInvalidCertificate
HTM_WebPage = "https://www.mysitewithaninvalidcertificate.com/login"
Syntax
Getting the different errors ignored by the HTML Display and WEBDEV Page controls Hide the details
<Result> = <Control used>.IgnoreError
<Result>: Integer constant (or combination of constants) Certificate errors ignored:
| | httpIgnoreExpiredCertificate | The certificate date is ignored | httpIgnoreInvalidCertificate | The certificate is ignored. | httpIgnoreInvalidCertificateName | The site name specified in the certificate is ignored. | httpIgnoreRedirectToHTTP | The redirection to a non-secure server is allowed. |
<Control used>: Control name Name of the HTML Display or WEBDEV Page control to be handled.
Setting the different errors ignored by the HTML Display and WEBDEV Page controls Hide the details
<Control used>.IgnoreError = <Error to ignore>
<Control used>: Control name Name of the HTML Display or WEBDEV Page control to be handled. <Error to ignore>: Integer constant (or combination of constants) Certificate errors ignored:
| | httpIgnoreExpiredCertificate | The certificate date is ignored | httpIgnoreInvalidCertificate | The certificate is ignored. | httpIgnoreInvalidCertificateName | The site name specified in the certificate is ignored. | httpIgnoreRedirectToHTTP | The redirection to a non-secure server is allowed. |
Remarks This property is available for HTML Display and WEBDEV Page controls. Both types of controls are based on the Chromium Embedded Framework (CEF).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|