DoneEventHandler Delegate

[C#]

public delegate void DoneEventHandler(object sender);

Parameters

  • sender: The source of the event.

Remarks

All handler objects have two events in common, namely OnStart and OnDone. Between OnStart and OnDone a handler object is said to be active. On a handler object, no other events are invoked after the OnDone event.