System.Tether.Manager.TTetheringProfile.OnAfterReceiveStream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnAfterReceiveStream: TTetheringStreamEvent read FOnAfterReceiveStream write FOnAfterReceiveStream;

C++

__property System::Tether::Comm::TTetheringStreamEvent OnAfterReceiveStream = {read=FOnAfterReceiveStream, write=FOnAfterReceiveStream};

Properties

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

Description

Preprocessing of the input stream data that occurs when the application profile receives a stream data from the remote application profile.

Define a function for the OnAfterReceiveStream event to process the received AInputStream, according to the processing done in the remote application profile, and then return a processed AOutputStream.

You need to process the complete received InputStream.

Note: Define this function if in the remote application profile the stream is processed before being sent.

See Also