Discuss this help topic in SecureBlackbox Forum

TElSSHKey.Copy

TElSSHKey     


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


This method copies the contents of the key to other instance of TElSSHKey

Declaration

[C#]
    void Copy(ref TElSSHKey Dest);

[VB.NET]
    Sub Copy(ByRef Dest As TElSSHKey)

[Pascal]
    procedure Copy(var Dest : TElSSHKey);

[C++]
    void Copy(TElSSHKey &Dest);

[PHP]
    void Copy(TElSSHKey &$Dest)

[Java]
    void copy(TSBObject DestRef);

Parameters

  • Dest - instance of class where the key should be copied to
  • DestRef -

Description

    Use this method to copy key information to another TElSSHKey class instance. If passed parameter is nil (null, Nothing) then the new instance of TElSSHKey class is created.

Discuss this help topic in SecureBlackbox Forum