Discuss this help topic in SecureBlackbox Forum

TElPDFSignature.GetSignedVersion

TElPDFSignature     See also     


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


Returns the part of the document that is certified by the signature.

Declaration

[C#]
    void GetSignedVersion(System.IO.Stream Stream);

[VB.NET]
    Sub GetSignedVersion(ByVal Stream As System.IO.Stream)

[Pascal]
    procedure GetSignedVersion(Stream : TStream);

[C++]
    void GetSignedVersion(TStream &Stream);
    void GetSignedVersion(TStream *Stream);

[PHP]
    void GetSignedVersion(TStream $Stream)

[Java]
    void getSignedVersion(TElStream Stream);

Parameters

  • Stream - the stream object where the signed part should be saved.

Description

    Use this method to get the part of the document that is certified by the signature. The signed part of the document is written to the stream object specified by the Stream parameter, and normally is a well-formatted PDF document.
    This method does not return any value. It can also throw an exception of type EElPDFSignatureError if some problem appears during its execution.
    To simply check if the whole document is signed, use IsDocumentSigned method.

See also:     IsDocumentSigned     Validate    

Discuss this help topic in SecureBlackbox Forum