C# 클래스 DummyPlugins.DummyServicePlugin

상속: IPlugin, IDummyService
파일 보기 프로젝트 열기: Invenietis/ck-certified

공개 메소드들

메소드 설명
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