IAssetManagerAssetRegionRoots Method
|
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax IEnumerable<IAssetItem> AssetRegionRoots(
out int count,
ILocale filterLocale = null,
int pageSize = -1,
int startIndex = -1
)
Function AssetRegionRoots (
<OutAttribute> ByRef count As Integer,
Optional filterLocale As ILocale = Nothing,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of IAssetItem)
IEnumerable<IAssetItem^>^ AssetRegionRoots(
[OutAttribute] int% count,
ILocale^ filterLocale = nullptr,
int pageSize = -1,
int startIndex = -1
)
abstract AssetRegionRoots :
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<IAssetItem>
Parameters
- count
- Type: SystemInt32
Count of total entries. - filterLocale (Optional)
- Type: Ingeniux.CMSILocale
The Locale to filter the collection. - pageSize (Optional)
- Type: SystemInt32
Number of entries to return. If not provided, returns all entries. - startIndex (Optional)
- Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry.
Return Value
Type:
IEnumerableIAssetItemAsset items that are Region Roots, and/or match the filter
LocaleRemarks
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