Discuss this help topic in SecureBlackbox Forum

TElSFTPSSHSubsystemHandler Constructor

TElSFTPSSHSubsystemHandler     See also     


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


Creates a new TElPublicKeySSHSubsystemHandler object.

Declaration

[C#]
    TElSFTPSSHSubsystemHandler();
    TElSFTPSSHSubsystemHandler(TElSSHTunnelConnection Connection, bool Delayed);
    TElSFTPSSHSubsystemHandler(TElSSHTunnelConnection Connection, bool Delayed, TElSFTPServer AServer);

[VB.NET]
    Sub New()
    Sub New(ByVal Connection As TElSSHTunnelConnection, ByVal Delayed As Boolean)
    Sub New(ByVal Connection As TElSSHTunnelConnection, ByVal Delayed As Boolean, ByVal AServer As TElSFTPServer)

[Pascal]
    constructor Create(Connection: TElSSHTunnelConnection);
    constructor CreateDelayed(Connection: TElSSHTunnelConnection; Server: TElSftpServer);

[C++]
    not available

[PHP]
    not available

[Java]
    public TElSFTPSSHSubsystemHandler();
    public TElSFTPSSHSubsystemHandler(TElSSHTunnelConnection Connection, boolean Delayed, TElSFTPServer AServer);
    public TElSFTPSSHSubsystemHandler(TElSSHTunnelConnection Connection, boolean Delayed);

Parameters

  • Connection - established logical connection
  • Server - created SFTP-server object
  • Delayed - specifies whether to run the new handler immediately.
  • AServer -

Description

    Both constructors (Create and CreateDelayed) create a new handler. The first one runs it immediately, but when the latter method is used (or when Delayed is set to True), Run should be called to start the handler.

See also:     Run    

Discuss this help topic in SecureBlackbox Forum