Retrieves a list of all portal lists on the system

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

Syntax

C#
public virtual EntityCollection<ListEntity> GetAllLists(
	bool includeNoPreference
)
Visual Basic
Public Overridable Function GetAllLists ( 
	includeNoPreference As Boolean
) As EntityCollection(Of ListEntity)
Visual C++
public:
virtual EntityCollection<ListEntity^>^ GetAllLists(
	bool includeNoPreference
)
F#
abstract GetAllLists : 
        includeNoPreference : bool -> EntityCollection<ListEntity> 
override GetAllLists : 
        includeNoPreference : bool -> EntityCollection<ListEntity> 

Parameters

includeNoPreference
Type: System..::..Boolean
Include no preference item

Return Value

Type: EntityCollection<(Of <(<'ListEntity>)>)>
EntityCollection containing all list entities for the current application id

Implements

IListBLL..::..GetAllLists(Boolean)

See Also