Need data source event handler used to fetch the data source for the grid.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public delegate IEntityCollection2 NeedDataSourceEventHandler(
	out int recordCount
)
Visual Basic
Public Delegate Function NeedDataSourceEventHandler ( 
	<OutAttribute> ByRef recordCount As Integer
) As IEntityCollection2
Visual C++
public delegate IEntityCollection2^ NeedDataSourceEventHandler(
	[OutAttribute] int% recordCount
)
F#
type NeedDataSourceEventHandler = 
    delegate of 
        recordCount : int byref -> IEntityCollection2

Parameters

recordCount
Type: System..::..Int32%
Total record count for data source

Return Value

Type: IEntityCollection2
Paged data source

See Also