OnLogout Method

MCManager API

Gets called when a user has logged out from the system. This event should be dispatched from the logout 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 OnLogout(
	ManagerEngine man
)
Visual Basic (Declaration)
Public Overridable Function OnLogout ( _
	man As ManagerEngine _
) As Boolean
Visual C++
public:
virtual bool OnLogout(
	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..::.OnLogout(ManagerEngine)

See Also