C# Класс DummyPlugins.DummyServicePlugin

Наследование: IPlugin, IDummyService
Показать файл Открыть проект

Открытые методы

Метод Описание
DummyServicePlugin ( ) : System

Constructor of the class, all services are null

GetAnswerToLife ( ) : int
Setup ( CK.Plugin.IPluginSetupInfo info ) : bool

First called method on the class, at this point, all services are null. Used to set up the service exposed by this plugin (if any).

Start ( ) : void

Called after the Setup method. All launched services are now set, you may now set up the link to the service used by this class

Stop ( ) : void

First method called when the plugin is stopping You should remove all references to any service here.

Teardown ( ) : void

Called after Stop() All services are null

Описание методов

DummyServicePlugin() публичный Метод

Constructor of the class, all services are null
public DummyServicePlugin ( ) : System
Результат System

GetAnswerToLife() публичный Метод

public GetAnswerToLife ( ) : int
Результат int

Setup() публичный Метод

First called method on the class, at this point, all services are null. Used to set up the service exposed by this plugin (if any).
public Setup ( CK.Plugin.IPluginSetupInfo info ) : bool
info CK.Plugin.IPluginSetupInfo
Результат bool

Start() публичный Метод

Called after the Setup method. All launched services are now set, you may now set up the link to the service used by this class
public Start ( ) : void
Результат void

Stop() публичный Метод

First method called when the plugin is stopping You should remove all references to any service here.
public Stop ( ) : void
Результат void

Teardown() публичный Метод

Called after Stop() All services are null
public Teardown ( ) : void
Результат void