Namespace:  NHibernate.Bytecode.Lightweight
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Delegate Sub SetterCallback ( _
	obj As Object, _
	index As Integer, _
	value As Object _
)
C#
public delegate void SetterCallback(
	Object obj,
	int index,
	Object value
)
Visual C++
public delegate void SetterCallback(
	Object^ obj, 
	int index, 
	Object^ value
)
JavaScript
function(obj, index, value);

Parameters

obj
Type: System..::.Object
index
Type: System..::.Int32
value
Type: System..::.Object

See Also