System.Tether.Manager.TTetheringAdapter.GetServerPeer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetServerPeer(const ProtocolId: TTetheringProtocolType): TTetheringCustomServerComm; virtual; abstract;

C++

virtual System::Tether::Comm::TTetheringCustomServerComm* __fastcall GetServerPeer(const System::UnicodeString ProtocolId) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringAdapter

Description

Returns an object that a protocol of the specified protocol type can use for connections as a server.

GetServerPeer provides a communications object of a class that protocols of the specified protocol type support. For example, if the protocol type is "TCP" (the type of TTetheringTCPProtocol), GetServerPeer must provide an instance of the corresponding communication class (TTetheringCustomComm):

If your adapter does not support the specified protocol type, GetServerPeer returns null.

See Also