Discuss this help topic in SecureBlackbox Forum

TElPublicKeySSHSubsystemHandler Constructor

TElPublicKeySSHSubsystemHandler     See also     


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


Creates a new TElPublicKeySSHSubsystemHandler object.

Declaration

[C#]
    TElPublicKeySSHSubsystemHandler();
    TElPublicKeySSHSubsystemHandler(TElSSHTunnelConnection Connection, bool Delayed);
    TElPublicKeySSHSubsystemHandler(TElSSHTunnelConnection Connection, bool Delayed, TElSSHPublicKeyServer 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 TElSSHPublicKeyServer)

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

[C++]
    not available

[PHP]
    not available

[Java]
    public TElPublicKeySSHSubsystemHandler();
    public TElPublicKeySSHSubsystemHandler(TElSSHTunnelConnection Connection, boolean Delayed);
    public TElPublicKeySSHSubsystemHandler(TElSSHTunnelConnection Connection, boolean Delayed, TElSSHPublicKeyServer AServer);

Parameters

  • Connection - established logical connection.
  • Server (AServer) - public-key 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