Discuss this help topic in SecureBlackbox Forum

TElSocket.RemoteAddress

TElSocket     See also     


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


Returns the remote address which the socket is connected to.

Declaration

[C#]
    string RemoteAddress;

[VB.NET]
    Property RemoteAddress As String

[Pascal]
    property RemoteAddress : string;

[C++]
    void get_RemoteAddress(std::string &OutResult);

[PHP]
    string get_RemoteAddress()

[Java]
    String getRemoteAddress();

Description

    Use this read-only property of the connected socket to get the IP address of the other side of the connection. If the client connection was established via proxy, the property would return empty address (to let the application distinguish between direct and proxied connections).

See also:     Address     Connect     Port     LocalHostName     BoundAddress     ListenAddress    

Discuss this help topic in SecureBlackbox Forum