The NotifyBusinessObjectsChangedHandler is a predefined delegate that specifically represents an event handler method for a NotifyBusinessObjectsChanged event.

Namespace:  NHibernate.BusinessObjects
Assembly:  NHibernate.BusinessObjects (in NHibernate.BusinessObjects.dll)

Syntax

Visual Basic
Public Delegate Sub NotifyBusinessObjectsChangedHandler ( _
	changeList As IDictionary(Of BusinessObjectKey, IBusinessObjectChangeNotification) _
)
C#
public delegate void NotifyBusinessObjectsChangedHandler(
	IDictionary<BusinessObjectKey, IBusinessObjectChangeNotification> changeList
)
Visual C++
public delegate void NotifyBusinessObjectsChangedHandler(
	IDictionary<BusinessObjectKey^, IBusinessObjectChangeNotification^>^ changeList
)
JavaScript
function(changeList);

Parameters

changeList
Type: System.Collections.Generic..::..IDictionary<(Of <(<'BusinessObjectKey, IBusinessObjectChangeNotification>)>)>
List of new, modified, and deleted business objects.

See Also