FGX.Platform.TfgPlatformServicesManager: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
(Метка: замена)
Строка 1: Строка 1:
 
* [[ FGX.Platform | Вверх к родителю: FGX.Platform ]]
 
* [[ FGX.Platform | Вверх к родителю: FGX.Platform ]]
* [[ FGX.Platform.TfgPlatformServicesManager_Methods | Методы ]]
 
* [[ FGX.Platform.TfgPlatformServicesManager_Properties | Свойства ]]
 
  
 
Delphi
 
Delphi
  
<syntaxhighlight lang="Delphi">TfgPlatformServicesManager = class (TObject)</syntaxhighlight>
+
<code lang="Delphi">TfgPlatformServicesManager = class (TObject)</code>
 
 
== Описание ==
 
 
 
Менеджер по хранению и организацией доступа к кроссплатформенным сервисам платформы.
 
 
 
== Методы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">RegisterService(const AServiceGUID: TGUID; AService: IInterface)</syntaxhighlight>
 
Регистрирует сервис в менеджере.
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">UnregisterService(const AServiceGUID: TGUID)</syntaxhighlight>
 
Выполняет дерегистрацию сервиса из хранилища.
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">IsSupported(const AServiceGUID: TGUID)</syntaxhighlight>
 
Проверяет есть ли указанный сервис в хранилище или нет.
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">RequestService(const AServiceGUID: TGUID; out AService: )</syntaxhighlight>
 
Пытается найти реализацию сервиса.
 
|}
 

Версия 03:58, 10 июня 2019

Delphi

TfgPlatformServicesManager = class (TObject)