System.Win.ScktComp.TCustomWinSocket.Addr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Addr: TSockAddrIn read FAddr;

C++

__property sockaddr_in Addr = {read=FAddr};

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 socket port.

Use Addr to represent the port used by the socket when working directly with Windows socket API calls. For client sockets, the value of Addr represents the target remote port. For server sockets, Addr is determined by the values of the LocalAddress and LocalPort properties.

See Also