System.Tether.Manager.TTetheringAdapters.Adapters

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class property Adapters: TTetheringAdapterTypes read GetAdapterTypes;

C++

/* static */ __property System::DynamicArray<System::UnicodeString> Adapters = {read=GetAdapterTypes};

Properties

Type Visibility Source Unit Parent
property public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringAdapters

Description

Array of adapter types registered in TTetheringAdapters.

You can get a registered adapter type from this property, and call GetAdapterInstance to obtain a class that implements your adapter type.

Use RegisterAdapter and UnRegisterAdapter to add or remove items from the Adapters property.

Units that implement adapter classes usually register those classes in their initialization section and unregister them in their finalization section.

See Also