IRoleService GetAllDefaultRoles Method CelloSaaS API Documentation
Get all default global roles defined in the system.

Namespace: CelloSaaS.ServiceContracts.AccessControlManagement
Assembly: CelloSaaS.ServiceContracts (in CelloSaaS.ServiceContracts.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax

string[] GetAllDefaultRoles()

Return Value

Type:  String 
Default Role Identifiers
Exceptions

Examples

public void GetAllDefaultRoles()
{        
   IRoleService roleService = ServiceLocator.Resolve>IRoleService<();
   string[] roles = roleService.GetAllDefaultRoles();
}
See Also