Discuss this help topic in SecureBlackbox Forum

TElCustomSSHTunnel.AutoOpen

TElCustomSSHTunnel     See also     


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


This property specifies if logic connection must be opened at once when SSH-connection is established.

Declaration

[C#]
    bool AutoOpen;

[VB.NET]
    Property AutoOpen As Boolean

[Pascal]
    property AutoOpen : boolean;

[C++]
    bool get_AutoOpen();
    void set_AutoOpen(bool Value);

[PHP]
    bool get_AutoOpen()
    void set_AutoOpen(bool $Value)

[Java]
    boolean getAutoOpen();
    void setAutoOpen(boolean Value);

Description

    If this property value is True the new connection must be opened at once when SSH-connection is established. If False connection must be opened manually using Open method.
    So all tunnels from TElSSHTunnelList for which this property is True at the moment of SSH-session establishing will be opened.
    Default value is True.

See also:     TElSSHTunnelList    

Discuss this help topic in SecureBlackbox Forum