GridResultsT(Int32, IReadOnlyListT, Int32) Constructor

Provides a return based results from a query and a check how many items there are available in total.

Definition

Namespace: MobileTrack.DataContainers.Cosmos
Assembly: MobileTrack.DataContainers (in MobileTrack.DataContainers.dll) Version: 0.7+1dadc87dcf0a0f837e19a3ce2deb7c1cd85375d1
public GridResults(
	int totalDataCount,
	IReadOnlyList<T> results,
	int startIndex
)

Parameters

totalDataCount  Int32
Total items available to the user.
results  IReadOnlyListT
Found results from the query.
startIndex  Int32
Usually this is the amount of items the user decided to skip (e.g. paging) plus one.

See Also