Click or drag to resize

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
)

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: IEnumerableT
A collection of schema version objects
Remarks
If both pageSize and startingIndex are omitted or less than 0, all versions will be retrieved.
See Also