Build 1.01.318.0

[This is preliminary documentation and is subject to change.]

Options that can be used to suppress certificate validation errors.

Namespace: Opc.Ua
Assembly: Opc.Ua.Core (in Opc.Ua.Core.dll) Version: 1.1.318.1 (1.01.318.1)

Syntax

C#
[FlagsAttribute]
public enum CertificateValidationOptions
Visual Basic
<FlagsAttribute> _
Public Enumeration CertificateValidationOptions
Visual C++
[FlagsAttribute]
public enum class CertificateValidationOptions

Members

Member nameValueDescription
Default0 Use the default options.
SuppressCertificateExpired1 Ignore expired certificates.
SuppressHostNameInvalid2 Ignore mismatches between the URL and the DNS names in the certificate.
SuppressUseNotAllowed4 Ignore
SuppressRevocationStatusUnknown8 Ignore errors when it is not possible to check the revocation status for a certificate.
CheckRevocationStatusOnline16 Attempt to check the revocation status online.
CheckRevocationStatusOffine32 Attempt to check the revocation status offline.
TreatAsInvalid64 Never trust the certificate.

See Also