Discuss this help topic in SecureBlackbox Forum

TElX509CertificateValidator.IgnoreSystemTrust

TElX509CertificateValidator     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies if system stores, containing trusted certificates, should be used.

Declaration

[C#]
    bool IgnoreSystemTrust;

[VB.NET]
    Property IgnoreSystemTrust As Boolean

[Pascal]
    property IgnoreSystemTrust : boolean;

[C++]
    bool get_IgnoreSystemTrust();
    void set_IgnoreSystemTrust(bool Value);

[PHP]
    bool get_IgnoreSystemTrust()
    void set_IgnoreSystemTrust(bool $Value)

[Java]
    boolean getIgnoreSystemTrust();
    void setIgnoreSystemTrust(boolean Value);

Description

    This property specifies whether trusted Windows Certificate Stores should be treated as trusted (i.e. no validation check is performed for such certificates) or as known certificates. If IgnoreSystemTrust = true, then such certificates are validated when they are found in trusted Windows Certificate Stores. If IgnoreSystemTrust = false, then certificates found in trusted Windows Certificate Stores are not validated, and are explicitly treated as trusted.

    Note that this property doesn't affect use of Trusted Certificates, added using AddTrustedCertificates() method.

See also:     UseSystemStorages     AddTrustedCertificates    

Discuss this help topic in SecureBlackbox Forum