Discuss this help topic in SecureBlackbox Forum

TElMessageSigner.IncludeChain

TElMessageSigner     See also     


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


Specifies if a newly added certificate should be taken from chain.

Declaration

[C#]
    bool IncludeChain;

[VB.NET]
    Property IncludeChain As Boolean

[Pascal]
    property IncludeChain : boolean;

[C++]
    bool get_IncludeChain();
    void set_IncludeChain(bool Value);

[PHP]
    bool get_IncludeChain()
    void set_IncludeChain(bool $Value)

[Java]
    boolean getIncludeChain();
    void setIncludeChain(boolean Value);

Description

    This property is used to control, how a certificate is added to CertStorage. If IncludeChain is True, and the certificate's Chain property is set, the certificate must be taken from there.
    The default value is False.
    Use of this property makes sense only if IncludeCertificates is True.

See also:     CertStorage     IncludeCertificates    

Discuss this help topic in SecureBlackbox Forum