RecroGridOnCreateClientRecAsync Method

Creating a record to be sent to the client based on the query result.

Definition

Namespace: Recrovit.RecroGridFramework
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 8.2.0.24.0426.1
C#
protected virtual Task<List<Object>> OnCreateClientRecAsync(
	RecroGridRGProperty[] rgs,
	int idx,
	IDataRecord dbDataRec,
	Object[] arrayRec
)

Parameters

rgs  RecroGridRGProperty
An enumeration of RecroGridRGProperty objects that determine the type of objects found in the record.
idx  Int32
The index of the current item in the list to be sent to the client.
dbDataRec  IDataRecord
The data record in case of a database query.
arrayRec  Object
The data record in case of unique data handling.

Return Value

TaskListObject
A record of the object to be sent to the client.

See Also