Discuss this help topic in SecureBlackbox Forum

TElCAdESSignatureProcessor.IsC

TElCAdESSignatureProcessor     See also     


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


Checks if the signature conforms with CAdES-C.

Declaration

[C#]
    bool IsC();
    bool IsC(bool DeepCheck);

[VB.NET]
    Function IsC() As Boolean
    Function IsC(ByVal DeepCheck As Boolean) As Boolean

[Pascal]
    function IsC() : boolean;
    function IsC(DeepCheck : boolean) : boolean;

[C++]
    bool IsC();
    bool IsC(bool DeepCheck);

[PHP]
    bool IsC()
    bool IsC(bool $DeepCheck)

[Java]
    boolean isC(boolean DeepCheck);
    boolean isC();

Parameters

  • DeepCheck - set DeepCheck parameter to true to check the completeness of the references (this involves deep validation and may result in relevant actions, such as CRL / OCSP retrieval).

Return value

    Returns True if the signature conforms with CAdES-C, and False otherwise.

Description

    Call this method to check all CAdES-C signature attributes.

See also:     CreateC     CompatibilityErrors     Signature    

Discuss this help topic in SecureBlackbox Forum