Discuss this help topic in SecureBlackbox Forum

TElCustomSSHSubsystemHandler Constructor

TElCustomSSHSubsystemHandler     See also     


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


This method creates a handler.

Declaration

[C#]
    TElCustomSSHSubsystemHandler(TElSSHTunnelConnection Connection, bool Delayed);
    TElCustomSSHSubsystemHandler();

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

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

[C++]
    not available

[PHP]
    not available

[Java]
    public TElCustomSSHSubsystemHandler();
    public TElCustomSSHSubsystemHandler(TElSSHTunnelConnection Connection, boolean Delayed);

Parameters

  • Connection - established logical connection
  • Delayed - (.NET) if this parameter is True you have to call Run method to run the handler.

Description

    Both constructor variants create new handler but Create runs it at once and when you use CreateDelayed constructor you have to call Run method to run the handler.

See also:     Destructor     Run    

Discuss this help topic in SecureBlackbox Forum