Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.LocalPort

TElSimpleSFTPClient     See also     


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


This property specifies the local port bound to the socket connection.

Declaration

[C#]
    int LocalPort;

[VB.NET]
    Property LocalPort As Integer

[Pascal]
    property LocalPort: Integer;

[C++]
    int32_t get_LocalPort();
    void set_LocalPort(int32_t Value);

[PHP]
    integer get_LocalPort()
    void set_LocalPort(integer $Value)

[Java]
    int getLocalPort();
    void setLocalPort(int Value);

Description

    Assign this property the local port bound to the socket connection. This property must be set if UseInternalSocket is set to true.
    Default value is 22.

    Note, that this property is DEPRECATED, SocketBinding should be used instead.

See also:     LocalAddress     UseInternalSocket     Port     Address    

Discuss this help topic in SecureBlackbox Forum