API:System.Tether.BluetoothAdapter.TTetheringBluetoothManagerCommunicationThread.ProcessResponse

From RAD Studio API Documentation
Revision as of 00:22, 17 September 2014 by BuildBot (talk | contribs) (Created page with "<section begin="api" /> <!--Start API Info--><ul id='childlinks'><li class='first'>'''[[System.Tether.BluetoothAdapter.TTetheringBluetoothManagerCommunicationThread|Up to Pare...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
function protected
System.Tether.BluetoothAdapter.pas
System.Tether.BluetoothAdapter.hpp
System.Tether.BluetoothAdapter TTetheringBluetoothManagerCommunicationThread

Description

Handles input from a remote communication thread.

System.Tether.BluetoothAdapter.TTetheringBluetoothManagerCommunicationThread.ProcessResponse inherits from System.Tether.Manager.TTetheringManagerCommunicationThread.ProcessResponse. All content below this line refers to System.Tether.Manager.TTetheringManagerCommunicationThread.ProcessResponse.

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