DataSource.ItemCallBackDelegate Delegate

System.Data.Generic

DataSourceItemCallBackDelegate Delegate
Delegated method for call back event methods. See also ExecuteCallBack.

Namespace: System.Data.Generic
Assembly: System.Data.Generic (in System.Data.Generic.dll) Version: 1.9.5473.30542 (1.9.5473.2392)
Syntax
public delegate void ItemCallBackDelegate(
	Dictionary<string, Object> item,
	int rownum,
	ref bool cancel
)
Public Delegate Sub ItemCallBackDelegate ( 
	item As Dictionary(Of String, Object),
	rownum As Integer,
	ByRef cancel As Boolean
)
public delegate void ItemCallBackDelegate(
	Dictionary<String^, Object^>^ item, 
	int rownum, 
	bool% cancel
)
type ItemCallBackDelegate = 
    delegate of 
        item : Dictionary<string, Object> * 
        rownum : int * 
        cancel : bool byref -> unit

Parameters

item
Type: System.Collections.GenericDictionaryString, Object
Current data item as a Dictionary(Of String, Object).
rownum
Type: SystemInt32
Row number of the item.
cancel
Type: SystemBoolean
Gets or sets a value indicating if the read should continue.
Remarks