ITaxonomyGetCategoryPages Method
|
Get pages for given category
Namespace:
Ingeniux.Runtime.Taxonomy
Assembly:
IGXRuntimeAPI (in IGXRuntimeAPI.dll) Version: 10.3.169
Syntax IEnumerable<ICMSPageEntry> GetCategoryPages(
ICategoryDefinition category,
ICMSNavigationBuildingSession navigationBuildSession,
bool isBackground,
IEnumerable<string> filterSchemaNames = null,
IEnumerable<string> filterAncestorPageIds = null,
bool useCheckedOut = false
)
Function GetCategoryPages (
category As ICategoryDefinition,
navigationBuildSession As ICMSNavigationBuildingSession,
isBackground As Boolean,
Optional filterSchemaNames As IEnumerable(Of String) = Nothing,
Optional filterAncestorPageIds As IEnumerable(Of String) = Nothing,
Optional useCheckedOut As Boolean = false
) As IEnumerable(Of ICMSPageEntry)
IEnumerable<ICMSPageEntry^>^ GetCategoryPages(
ICategoryDefinition^ category,
ICMSNavigationBuildingSession^ navigationBuildSession,
bool isBackground,
IEnumerable<String^>^ filterSchemaNames = nullptr,
IEnumerable<String^>^ filterAncestorPageIds = nullptr,
bool useCheckedOut = false
)
abstract GetCategoryPages :
category : ICategoryDefinition *
navigationBuildSession : ICMSNavigationBuildingSession *
isBackground : bool *
?filterSchemaNames : IEnumerable<string> *
?filterAncestorPageIds : IEnumerable<string> *
?useCheckedOut : bool
(* Defaults:
let _filterSchemaNames = defaultArg filterSchemaNames null
let _filterAncestorPageIds = defaultArg filterAncestorPageIds null
let _useCheckedOut = defaultArg useCheckedOut false
*)
-> IEnumerable<ICMSPageEntry>
Parameters
- category
- Type: Ingeniux.Runtime.TaxonomyICategoryDefinition
Category for get pages for - navigationBuildSession
- Type: Ingeniux.Runtime.NavigationBuilderICMSNavigationBuildingSession
- isBackground
- Type: SystemBoolean
- filterSchemaNames (Optional)
- Type: System.Collections.GenericIEnumerableString
Page must be using one of
the given schemas to be listed - filterAncestorPageIds (Optional)
- Type: System.Collections.GenericIEnumerableString
Page must be under one
of the ancestor pages to be listed - useCheckedOut (Optional)
- Type: SystemBoolean
Return Value
Type:
IEnumerableICMSPageEntryCollection of navigation representatives assigned to category
See Also