Discuss this help topic in SecureBlackbox Forum

TElAuthenticodeManager.Save

TElAuthenticodeManager     See also     


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


Saves the signed binary file.

Declaration

[C#]
    void Save(System.IO.Stream NewStream);
    void Save(string NewFileName);

[VB.NET]
    Sub Save(ByVal NewStream As System.IO.Stream)
    Sub Save(ByVal NewFileName As String)

[Pascal]
    procedure Save(NewStream : TStream);
    procedure Save(NewFileName : string);

[C++]
    void Save(TStream &NewStream);
    void Save(TStream *NewStream);
    void Save(const std::string &NewFileName);

[PHP]
    void Save(TStream $NewStream)
    void Save(string $NewFileName)

[Java]
    void save(String NewFileName);
    void save(TElStream NewStream);

Parameters

  • NewStream - the stream where the file should be saved.
  • NewFileName - path on the disk where the file should be written.

Description

    Call this method when you finished adding the signatures to save the file.

See also:     AddSignature     Close    

Discuss this help topic in SecureBlackbox Forum