Get all roles for current application.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
EntityCollection<AspnetRolesEntity> GetRoles(
	bool includeAllUsersRole
)
Visual Basic
Function GetRoles ( 
	includeAllUsersRole As Boolean
) As EntityCollection(Of AspnetRolesEntity)
Visual C++
EntityCollection<AspnetRolesEntity^>^ GetRoles(
	bool includeAllUsersRole
)
F#
abstract GetRoles : 
        includeAllUsersRole : bool -> EntityCollection<AspnetRolesEntity> 

Parameters

includeAllUsersRole
Type: System..::..Boolean
Include AllUsers role in the returning collection

Return Value

Type: EntityCollection<(Of <(<'AspnetRolesEntity>)>)>
Role collection

See Also