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

Syntax

C# 
public delegate void AfterCommandEventHandler( 
   object sender,
   AfterCommandEventArgs e
)

Parameters

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

Requirements

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

See Also