Gets a paginated list of site brandings.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<ISiteBranding> Sites(
out int count,
int pageSize = -1,
int startIndex = -1
)
Function Sites (
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of ISiteBranding)
IEnumerable<ISiteBranding^>^ Sites(
[OutAttribute] int% count,
int pageSize = -1,
int startIndex = -1
)
abstract Sites :
count : int byref *
?pageSize : int *
?startIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<ISiteBranding> Parameters
- count Int32
- Output total count
- pageSize Int32 (Optional)
- Number of items to return. Default is all items.
- startIndex Int32 (Optional)
- Starting item index. Default is first item.
Return Value
IEnumerableISiteBrandingCollection of site branding entries
See Also