Gets a list of entities of type T.

Namespace: SimpleMode.SecureLicenseManager.Data
Assembly: SimpleMode.SecureLicenseManager.Data (in SimpleMode.SecureLicenseManager.Data.dll) Version: 1.5.5120.0 (1.5.5120.0)

Syntax

C#
List<T> GetTop<T>(
	int skipCount,
	int itemCount
)
Visual Basic
Function GetTop(Of T) ( _
	skipCount As Integer, _
	itemCount As Integer _
) As List(Of T)
Visual C++
generic<typename T>
List<T>^ GetTop(
	int skipCount, 
	int itemCount
)

Parameters

skipCount
Type: System..::..Int32
The number of entities to skip before starting to add entities into the list.
itemCount
Type: System..::..Int32
The maximum number of entities to add into the list.

Type Parameters

T
The type of the entity instance contained in the list.

Return Value

A List of entities of type T.

See Also