DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Security.SecurityModule Class Reference
Inheritance diagram for Deveel.Data.Security.SecurityModule:
Deveel.Data.ISystemModule

Public Member Functions

void Register (IScope systemScope)
 

Properties

string ModuleName [get]
 
string Version [get]
 
- Properties inherited from Deveel.Data.ISystemModule
string ModuleName [get]
 
string Version [get]
 

Detailed Description

Definition at line 22 of file SecurityModule.cs.

Member Function Documentation

void Deveel.Data.Security.SecurityModule.Register ( IScope  systemScope)
inline

Implements Deveel.Data.ISystemModule.

Definition at line 31 of file SecurityModule.cs.

31  {
32  systemScope.Bind<IUserManager>()
33  .To<UserManager>()
34  .InQueryScope();
35 
36  systemScope.Bind<IPrivilegeManager>()
37  .To<PrivilegeManager>()
38  .InQueryScope();
39  }

Property Documentation

string Deveel.Data.Security.SecurityModule.ModuleName
get

Definition at line 23 of file SecurityModule.cs.

string Deveel.Data.Security.SecurityModule.Version
get

Definition at line 27 of file SecurityModule.cs.


The documentation for this class was generated from the following file: