ISchemaWithVersionsTVersions Method
|
Retrieves a collection of version objects belongs to schema
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
SyntaxIEnumerable<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 Int32
- Output of the total count of versions
- pageSize Int32 (Optional)
- How many items to retrieve, default to retrieve 128 items, if startingIndex is equal to or greater than 0.
- startingIndex Int32 (Optional)
- The starting position of the items to retrieve.
Return Value
IEnumerableTA collection of schema version objects
RemarksIf both pageSize and startingIndex are omitted or less than 0, all versions will be retrieved.
See Also