OnInit Method

MCManager API

Gets called after any authenication is performed and verified. This method should return false if the execution chain is to be broken.

Namespace:  Moxiecode.Manager
Assembly:  MCManager (in MCManager.dll) Version: 1.0.0.0

Syntax

C#
public virtual bool OnInit(
	ManagerEngine man
)
Visual Basic (Declaration)
Public Overridable Function OnInit ( _
	man As ManagerEngine _
) As Boolean
Visual C++
public:
virtual bool OnInit(
	ManagerEngine^ man
)

Parameters

man
Type: Moxiecode.Manager..::.ManagerEngine
ManagerEngine reference that the plugin is assigned to.

Return Value

true/false if the execution of the event chain should continue execution.

Implements

IPlugin..::.OnInit(ManagerEngine)

See Also