System.Win.ScktComp.TServerClientWinSocket.ServerWinSocket

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ServerWinSocket: TServerWinSocket read FServerWinSocket;

C++

__property TServerWinSocket* ServerWinSocket = {read=FServerWinSocket};

Properties

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

Description

Describes the endpoint of the listening connection that accepted the connection to the client socket which is managed by this TServerClientWinSocket.

Use ServerWinSocket to gain access to the Windows socket object for the listening connection that spawned this TServerClientWinSocket. Use the ServerWinSocket to trigger events that can be handled by the event handlers of the server socket, to get execution threads from the cache maintained by the Windows server socket, or to get information about the other active connections accepted by the server socket.

See Also