Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<IPage> RegionRoots(
out int count,
ILocale filterLocale = null,
int pageSize = -1,
int startIndex = -1
)
Function RegionRoots (
<OutAttribute> ByRef count As Integer,
Optional filterLocale As ILocale = Nothing,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IPage)
IEnumerable<IPage^>^ RegionRoots(
[OutAttribute] int% count,
ILocale^ filterLocale = nullptr,
int pageSize = -1,
int startIndex = -1
)
abstract RegionRoots :
count : int byref *
?filterLocale : ILocale *
?pageSize : int *
?startIndex : int
(* Defaults:
let _filterLocale = defaultArg filterLocale null
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<IPage> Parameters
- count Int32
- Count of total entries
- filterLocale ILocale (Optional)
- The Locale to filter the collection.
- pageSize Int32 (Optional)
- Number of entries to return. If not provided, returns all entries.
- startIndex Int32 (Optional)
- Starting index of entries. If not provided, starts from the first entry.
Return Value
IEnumerableIPagePages that are Region Roots, and/or matches the filter
Locale
Remarks
There could be multiple Region Roots in a Site Instance, and multiple Region Roots with the same language. They could have Lingual Maps between,
or have no relation with each other.
See Also