System.Tether.Manager.TTetheringProtocol.OnAfterReceiveData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnAfterReceiveData: TTetheringDataEvent read FOnAfterReceiveData write FOnAfterReceiveData;

C++

__property System::Tether::Comm::TTetheringDataEvent OnAfterReceiveData = {read=FOnAfterReceiveData, write=FOnAfterReceiveData};

Properties

Type Visibility Source Unit Parent
event public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringProtocol


Description

Preprocessing of the incoming data received from the remote protocol.

Define a function for the OnAfterReceiveData event to process the received data in the DataBuffer, according to the processing done in the remote protocol, and then return the processed data as the Result.

Note: Define this function if the remote protocol processes the stream before sending it.

See Also