Discuss this help topic in SecureBlackbox Forum

TElSSHCustomForwarding.ForwardedPort

TElSSHCustomForwarding     See also     


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


This property specifies the port to receive incoming connection.

Declaration

[C#]
    int ForwardedPort;

[VB.NET]
    Property ForwardedPort As Integer

[Pascal]
    property ForwardedPort: Integer;

[C++]
    int32_t get_ForwardedPort();
    void set_ForwardedPort(int32_t Value);

[PHP]
    integer get_ForwardedPort()
    void set_ForwardedPort(integer $Value)

[Java]
    int getForwardedPort();
    void setForwardedPort(int Value);

Description

    This property specifies the port number which will be used to listen for incoming connections. If this property is set to 0, the port number will be chosen automatically by the operating system (either on the server side for remote port forwarding, or on the client side for local port forwarding). Use the BoundPort property to get the actual port number.

See also:     ForwardedHost    

Discuss this help topic in SecureBlackbox Forum