System.Win.ScktComp.TCustomServerSocket.DoActivate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoActivate(Value: Boolean); override;

C++

virtual void __fastcall DoActivate(bool Value);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Win.ScktComp.pas
System.Win.ScktComp.hpp
System.Win.ScktComp TCustomServerSocket

Description

Opens or Closes the socket connection.

DoActivate provides the underlying implementation of the Open and Close methods. When Value is true, DoActivate opens a listening connection to accept connection requests. When Value is false, DoActivate terminates the current listening connection and any connections to client sockets.

See Also