System.Tether.Manager.TTetheringProtocol.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 public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringProtocol

Description

Preprocessing of the incoming stream received from the remote protocol.

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

You need to process the complete received InputStream.

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

See Also