Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.LocalAddress

TElSimpleSFTPClient     See also     


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


This property specifies the local IP address bound to the socket connection.

Declaration

[C#]
    string LocalAddress;

[VB.NET]
    Property LocalAddress As String

[Pascal]
    property LocalAddress: string;

[C++]
    void get_LocalAddress(std::string &OutResult);
    void set_LocalAddress(const std::string &Value);

[PHP]
    string get_LocalAddress()
    void set_LocalAddress(string $Value)

[Java]
    String getLocalAddress();
    void setLocalAddress(String Value);

Description

    Assign this property the local IP address bound to the socket connection. This property must be set if UseInternalSocket is set to true.

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

See also:     LocalPort     UseInternalSocket     Address     Port    

Discuss this help topic in SecureBlackbox Forum