ISchemaWithVersionsTVersions Method
|
Retrieves a collection of version objects belongs to schema
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax IEnumerable<T> Versions(
out int count,
int pageSize = -1,
int startingIndex = -1
)
Function Versions (
<OutAttribute> ByRef count As Integer,
Optional pageSize As Integer = -1,
Optional startingIndex As Integer = -1
) As IEnumerable(Of T)
IEnumerable<T>^ Versions(
[OutAttribute] int% count,
int pageSize = -1,
int startingIndex = -1
)
abstract Versions :
count : int byref *
?pageSize : int *
?startingIndex : int
(* Defaults:
let _pageSize = defaultArg pageSize -1
let _startingIndex = defaultArg startingIndex -1
*)
-> IEnumerable<'T>
Parameters
- count
- Type: SystemInt32
Output of the total count of versions - pageSize (Optional)
- Type: SystemInt32
How many items to retrieve, default to retrieve 128 items, if startingIndex is equal to or greater than 0. - startingIndex (Optional)
- Type: SystemInt32
The starting position of the items to retrieve.
Return Value
Type:
IEnumerableTA collection of schema version objects
Remarks If both pageSize and startingIndex are omitted or less than 0, all versions will be retrieved.
See Also