Discuss this help topic in SecureBlackbox Forum

TElBaseSocketClient.RemoteHost

TElBaseSocketClient     See also     


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


This read-only property contains the host name of the remote server.

Declaration

[C#]
    string RemoteHost;

[VB.NET]
    Property RemoteHost As String

[Pascal]
    property RemoteHost : string;

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

[PHP]
    string get_RemoteHost()

[Java]
    String getRemoteHost();

Description

When the client is connected, use this property to retrieve the host name of the remote server. Remote host name can be used for validation of X.509 certificates received from the server during SSL/TLS handshake. Note, that the remote host address isn't always available. For instance, if the Address property was set to the IP address, backresolving of this IP to the host name is not performed (this is your job to do it if needed).

See also:     Address     RemoteIP    

Discuss this help topic in SecureBlackbox Forum