System.Win.ScktComp.TServerSocket.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual TServerSocket(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
System.Win.ScktComp.pas
System.Win.ScktComp.hpp
System.Win.ScktComp TServerSocket

Description

Creates an instance of TServerSocket.

Call Create to create and initialize a server socket component at runtime. TServerSocket objects placed at design time are created automatically.

After calling the inherited constructor, Create

Allocates the TServerWinSocket object that encapsulates the Windows socket connection for the server socket.

Initializes the event and error dispatchers for the server socket.

Initializes ThreadCacheSize to 10.

See Also