System.Tether.Manager.TTetheringProtocol.DoSendStream

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoSendStream(const AStream: TStream): Boolean; virtual; abstract;

C++

virtual bool __fastcall DoSendStream(System::Classes::TStream* const AStream) = 0 ;

Properties

Type Visibility Source Unit Parent
function protected
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringProtocol

Description

Note: DoSendStream is an abstract method that subclasses of TTetheringProtocol implement.

Sends the specified stream to the remote protocol and returns True on success or False on failure.

This function receives a single parameter, AStream, which is the stream to be sent.

DoSendStream returns False if there is a connection error during the transmission of the stream. It returns True otherwise.

SendStream calls DoSendStream.

See Also