ISitePages(FuncIPage, Boolean) Method
|
Retrieves a collection of
Pages, filtered by a callback method.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<IPage> Pages(
Func<IPage, bool> filterCallback
)
Function Pages (
filterCallback As Func(Of IPage, Boolean)
) As IEnumerable(Of IPage)
IEnumerable<IPage^>^ Pages(
Func<IPage^, bool>^ filterCallback
)
abstract Pages :
filterCallback : Func<IPage, bool> -> IEnumerable<IPage> Parameters
- filterCallback FuncIPage, Boolean
- The callback method to filter out Pages. Pages with callback method returning true, are included in the collection.
Return Value
IEnumerableIPageCollection of
Pages filtered by the callback method.
See Also