iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

RowDelegate Delegate

A delegate called once per row in the QueryWithRowDelegate method

[Visual Basic]
Public Delegate Sub RowDelegate( _
   ByVal Object As Object, _
   ByVal Object As Object, _
   ByVal IList As IList _
)
[C#]
public delegate void RowDelegate(
   Object obj,
   Object parameterObject,
   IList list
);

Parameters

obj
The object currently being processed.
parameterObject
The optional parameter object passed into the QueryWithRowDelegate method.
list
The IList that will be returned to the caller.

Requirements

Namespace: IBatisNet.DataMapper

Assembly: IBatisNet.DataMapper (in IBatisNet.DataMapper.dll)

See Also

IBatisNet.DataMapper Namespace