QuickObjects.ObjectBase Send comments on this topic.
ObjectEventHandler Delegate
See Also 
Akal.QuickObjects.ObjectBase Namespace : ObjectEventHandler Delegate
sender
A reference to the business object instance that fired the event.
e
A reference to the instance of ObjectEventArgs object containing additional information associated with the event.
ObjectEventHandler Delegate is used to describe the event signature for all the Object Initialization and Dispose related events that will be fired by the Business Objects.

Syntax

C# 
public delegate void ObjectEventHandler( 
   object sender,
   ObjectEventArgs e
)

Parameters

sender
A reference to the business object instance that fired the event.
e
A reference to the instance of ObjectEventArgs object containing additional information associated with the event.

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also