System.Tether.Manager.TTetheringProfile.OnBeforeSendData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnBeforeSendData: TTetheringDataEvent read FOnBeforeSendData write FOnBeforeSendData;

C++

__property System::Tether::Comm::TTetheringDataEvent OnBeforeSendData = {read=FOnBeforeSendData, write=FOnBeforeSendData};

Properties

Type Visibility Source Unit Parent
event published
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringProfile

Description

Post processing of the data that occurs before the application profile sends data to the remote application profile.

Define a function for the OnBeforeSendData event to process ADataBuffer before sending it to the remote application profile. Put the result in the processed data.

Note: Define the inverse function of this event (OnAfterReceiveData) in the remote application profile.

See Also