QuickObjects.ObjectBase Send comments on this topic.
BeforeCommandEventHandler Delegate
See Also 
Akal.QuickObjects.ObjectBase Namespace : BeforeCommandEventHandler Delegate
sender
A reference to the business object instance that fired the event.
e
A reference to the instance of BeforeCommandEventArgs object containing additional information associated with the event.
BeforeCommandEventHandler is used to describe the signature of events that will be fired by the Business Object prior to executing a command.

Syntax

C# 
public delegate void BeforeCommandEventHandler( 
   object sender,
   BeforeCommandEventArgs e
)

Parameters

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

Requirements

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

See Also