System.Tether.Manager.TTetheringManagerCommunicationThread.ProcessResponse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ProcessResponse(const AData: string; var RemoteConnectionString: string): string; virtual;

C++

virtual System::UnicodeString __fastcall ProcessResponse(const System::UnicodeString AData, System::UnicodeString &RemoteConnectionString);

Properties

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

Description

Handles input from a remote communication thread.

ProcessResponse parses the incoming information from a remote communication thread, and relays that information to its adapter.

ProcessResponse receives the following parameters:

  • AData is the actual data from the remote communication thread, serialized as a string.
  • RemoteConnectionString is a string that uniquely identifies the origin of the remote data.
Note: Subclasses of TTetheringManagerCommunicationThread may override ProcessResponse. For example, TTetheringNetworkManagerCommunicationThread.ProcessResponse.

See Also