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(
	IRelationPredicateBucket filter,
	bool fullPrefetchPath
)
Visual Basic
Function GetAllPageLocalizations ( 
	filter As IRelationPredicateBucket,
	fullPrefetchPath As Boolean
) As EntityCollection(Of PageLocalizationEntity)
Visual C++
EntityCollection<PageLocalizationEntity^>^ GetAllPageLocalizations(
	IRelationPredicateBucket^ filter, 
	bool fullPrefetchPath
)
F#
abstract GetAllPageLocalizations : 
        filter : IRelationPredicateBucket * 
        fullPrefetchPath : bool -> EntityCollection<PageLocalizationEntity> 

Parameters

filter
Type: IRelationPredicateBucket
Custom filter
fullPrefetchPath
Type: System..::..Boolean
Include full prefetch

Return Value

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

See Also