API:System.Tether.BluetoothAdapter.TTetheringBluetoothManagerCommunicationThread.ProcessResponse
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:
- ADatais the actual data from the remote communication thread, serialized as a string.
- RemoteConnectionStringis a string that uniquely identifies the origin of the remote data.
- Note: Subclasses of TTetheringManagerCommunicationThread may override ProcessResponse. For example, TTetheringNetworkManagerCommunicationThread.ProcessResponse.