Returns all page localization entities from a currently active portal (filter on ApplicationId field).

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

Syntax

C#
EntityCollection<PageLocalizationEntity> GetAllPageLocalizations(
	Nullable<Guid> pageId,
	Guid languageId,
	bool fullPrefetchPath
)
Visual Basic
Function GetAllPageLocalizations ( 
	pageId As Nullable(Of Guid),
	languageId As Guid,
	fullPrefetchPath As Boolean
) As EntityCollection(Of PageLocalizationEntity)
Visual C++
EntityCollection<PageLocalizationEntity^>^ GetAllPageLocalizations(
	Nullable<Guid> pageId, 
	Guid languageId, 
	bool fullPrefetchPath
)
F#
abstract GetAllPageLocalizations : 
        pageId : Nullable<Guid> * 
        languageId : Guid * 
        fullPrefetchPath : bool -> EntityCollection<PageLocalizationEntity> 

Parameters

pageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Page Id
languageId
Type: System..::..Guid
Language Id
fullPrefetchPath
Type: System..::..Boolean
Include full prefetch

Return Value

Type: EntityCollection<(Of <(<'PageLocalizationEntity>)>)>
Collection of all page localizations.

See Also