Returns all navigation items for a given page and language .

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

Syntax

C#
public virtual EntityCollection<NavigationEntity> GetNavigationItems(
	bool ignoreParentId,
	Nullable<Guid> parentId,
	string language
)
Visual Basic
Public Overridable Function GetNavigationItems ( 
	ignoreParentId As Boolean,
	parentId As Nullable(Of Guid),
	language As String
) As EntityCollection(Of NavigationEntity)
Visual C++
public:
virtual EntityCollection<NavigationEntity^>^ GetNavigationItems(
	bool ignoreParentId, 
	Nullable<Guid> parentId, 
	String^ language
)
F#
abstract GetNavigationItems : 
        ignoreParentId : bool * 
        parentId : Nullable<Guid> * 
        language : string -> EntityCollection<NavigationEntity> 
override GetNavigationItems : 
        ignoreParentId : bool * 
        parentId : Nullable<Guid> * 
        language : string -> EntityCollection<NavigationEntity> 

Parameters

ignoreParentId
Type: System..::..Boolean
Ignore pageId
parentId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Parent ID
language
Type: System..::..String
Language name

Return Value

Type: EntityCollection<(Of <(<'NavigationEntity>)>)>
Navigation entity collection

Implements

IPageRepository..::..GetNavigationItems(Boolean, Nullable<(Of <<'(Guid>)>>), String)

See Also