Performs a search by example using the item parameter. Property values of the item parameter are used to construct the necessary search query.

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> Find<T>(
	T item,
	int skipCount,
	int itemCount
)
Visual Basic
Function Find(Of T) ( _
	item As T, _
	skipCount As Integer, _
	itemCount As Integer _
) As List(Of T)
Visual C++
generic<typename T>
List<T>^ Find(
	T item, 
	int skipCount, 
	int itemCount
)

Parameters

item
Type: T
An instance of type T that will be used to construct the search query.
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 item.

Return Value

List of items that match the property values specified in the item parameter.

See Also