Gets navigation items that are accessible to the active user.

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

Syntax

C#
EntityCollection GetMenuNavigationItems(
	Context context,
	bool filterByPageRoles
)
Visual Basic
Function GetMenuNavigationItems ( 
	context As Context,
	filterByPageRoles As Boolean
) As EntityCollection
Visual C++
EntityCollection^ GetMenuNavigationItems(
	Context^ context, 
	bool filterByPageRoles
)
F#
abstract GetMenuNavigationItems : 
        context : Context * 
        filterByPageRoles : bool -> EntityCollection 

Parameters

context
Type: Context
LLBLGen Context to use to guarantee uniqueness of items.
filterByPageRoles
Type: System..::..Boolean
Indicates if the returned collection is to be pre-filtered by page roles, or should all pages be returned regardless of roles assigned to them.

Return Value

Type: EntityCollection
Collection of navigation items.

See Also