Gets a list of entities of type T.
Namespace: SimpleMode.SecureLicenseManager.DataAssembly: SimpleMode.SecureLicenseManager.Data (in SimpleMode.SecureLicenseManager.Data.dll) Version: 1.5.5120.0 (1.5.5120.0)
Syntax
C# |
---|
public List<T> GetTop<T>(
int skipCount,
int itemCount
)
|
Visual Basic |
---|
Public Function GetTop(Of T) ( _
skipCount As Integer, _
itemCount As Integer _
) As List(Of T) |
Visual C++ |
---|
public:
generic<typename T>
virtual List<T>^ GetTop(
int skipCount,
int itemCount
) sealed |
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