Discuss this help topic in SecureBlackbox Forum

TElPDFSignature.Validate

TElPDFSignature     See also     


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


Validates the signature.

Declaration

[C#]
    bool Validate();
    bool Validate(bool MDPLiberalMode);

[VB.NET]
    Function Validate() As Boolean
    Function Validate(ByVal MDPLiberalMode As Boolean) As Boolean

[Pascal]
    function Validate : boolean; overload;
    function Validate(MDPLiberalMode : Boolean) : boolean; overload;

[C++]
    bool Validate();
    bool Validate(bool MDPLiberalMode);

[PHP]
    bool Validate()
    bool Validate(bool $MDPLiberalMode)

[Java]
    boolean validate(boolean MDPLiberalMode);
    boolean validate();

Parameters

  • MDPLiberalMode - specifies if liberal validation mode for MDP signatures should be used.

Return value

    Returns True if signature is valid, and False otherwise.

Description

    Use this function to validate the signature.

See also:     GetSignedVersion    

Discuss this help topic in SecureBlackbox Forum