IAssetManagerAssetRegionRoots Method
|
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 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
IEnumerableIAssetItemAsset items that are Region Roots, and/or match 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