OnLogin Method

MCManager API

Gets called when a user has logged in to the system. This event should be dispatched from the login page. These events is not fired internaly and should be fired/dispatched externally.

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

Syntax

C#
public virtual bool OnLogin(
	ManagerEngine man
)
Visual Basic (Declaration)
Public Overridable Function OnLogin ( _
	man As ManagerEngine _
) As Boolean
Visual C++
public:
virtual bool OnLogin(
	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..::.OnLogin(ManagerEngine)

See Also