System.Win.ScktComp.TClientSocket.OnWrite

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnWrite: TSocketNotifyEvent read FOnWrite write FOnWrite;

C++

__property OnWrite;

Properties

Type Visibility Source Unit Parent
event published
System.Win.ScktComp.pas
System.Win.ScktComp.hpp
System.Win.ScktComp TClientSocket

Description

Occurs when a client socket should write information to the socket connection.

System.Win.ScktComp.TClientSocket.OnWrite inherits from System.Win.ScktComp.TCustomSocket.OnWrite. All content below this line refers to System.Win.ScktComp.TCustomSocket.OnWrite.

Occurs when a client socket should write information to the socket connection.

Write an OnWrite to write from the socket connection. If the socket is a blocking socket, use a TWinSocketStream object to write to the connection. Otherwise, u Use the methods of the Socket parameter to perform the actual writing.

See Also