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

DictionaryRowDelegate Delegate

A delegate called once per row in the QueryForMapWithRowDelegate method

[Visual Basic]
Public Delegate Sub DictionaryRowDelegate( _
   ByVal Object As Object, _
   ByVal Object As Object, _
   ByVal Object As Object, _
   ByVal IDictionary As IDictionary _
)
[C#]
public delegate void DictionaryRowDelegate(
   Object key,
   Object value,
   Object parameterObject,
   IDictionary dictionary
);

Parameters

key
value
parameterObject
The optional parameter object passed into the QueryForMapWithRowDelegate method.
dictionary
The IDictionary that will be returned to the caller.

Requirements

Namespace: IBatisNet.DataMapper

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

See Also

IBatisNet.DataMapper Namespace