System.Tether.Manager.TTetheringProfile.OnBeforeSendStream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnBeforeSendStream: TTetheringStreamEvent read FOnBeforeSendStream write FOnBeforeSendStream;

C++

__property System::Tether::Comm::TTetheringStreamEvent OnBeforeSendStream = {read=FOnBeforeSendStream, write=FOnBeforeSendStream};

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 stream data that occurs before the application profile sends the stream to the remote application profile.

Define a function for the OnBeforeSendStream event to process AInputStream before sending it to the remote application profile. Put the result in the processed AOutputStream stream.

You need to process the complete stream before sending it.

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

See Also