Interface ISecurityManager
Assembly: TcOpen.Inxton.Abstractions.dll
Syntax
public interface ISecurityManager
Properties
|
Improve this Doc
View Source
AvailableRoles
Declaration
IEnumerable<Role> AvailableRoles { get; }
Property Value
Type |
Description |
System.Collections.Generic.IEnumerable<Role> |
|
Methods
|
Improve this Doc
View Source
AvailableGroups()
Declaration
IEnumerable<string> AvailableGroups()
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<System.String> |
|
|
Improve this Doc
View Source
GetOrCreateRole(Role)
Get the existing role or add the rule if not present in the system.
Declaration
Role GetOrCreateRole(Role role)
Parameters
Type |
Name |
Description |
Role |
role |
Role to create or retrieve.
|
Returns
Type |
Description |
Role |
Requested role
|