System.Win.ScktComp.TCustomWinSocket.RemoteAddr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property RemoteAddr: TSockAddrIn read GetRemoteAddr;

C++

__property sockaddr_in RemoteAddr = {read=GetRemoteAddr};

Properties

Type Visibility Source Unit Parent
property public
System.Win.ScktComp.pas
System.Win.ScktComp.hpp
System.Win.ScktComp TCustomWinSocket

Description

Specifies the Internet socket address structure used in Windows socket API calls to represent the full specification of the remote socket port.

When working directly with Windows socket API calls, use RemoteAddr to represent the port used by the socket on the other end of the connection. The value of RemoteAddr is determined by the values of the RemoteAddress and RemotePort properties.

See Also