Discuss this help topic in SecureBlackbox Forum

TElAuthenticodeManager.Open

TElAuthenticodeManager     See also     


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


Opens the binary file.

Declaration

[C#]
    bool Open(System.IO.Stream Stream);
    bool Open(string FileName);

[VB.NET]
    Function Open(ByVal Stream As System.IO.Stream) As Boolean
    Function Open(ByVal FileName As String) As Boolean

[Pascal]
    function Open(Stream : TStream) : boolean;
    function Open(FileName : string) : boolean;

[C++]
    bool Open(TStream &Stream);
    bool Open(TStream *Stream);
    bool Open(const std::string &FileName);

[PHP]
    bool Open(TStream $Stream)
    bool Open(string $FileName)

[Java]
    boolean open(String FileName);
    boolean open(TElStream Stream);

Parameters

  • Stream - the stream to be opened.
  • FileName - path to the file on disk.

Return value

    This method returns True if the binary is already signed, and False otherwise.

Description

    Call this method to open the file. Once the file is opened, you can proceed with adding/removing signatures, etc..

See also:     Close     Save    

Discuss this help topic in SecureBlackbox Forum