| Visual Basic (Declaration) | |
|---|---|
Public Delegate Sub StateChangedEventHandler( _ ByVal sender As Object, _ ByVal e As StateChangedEventArgs _ ) | |
| C# | |
|---|---|
public delegate void StateChangedEventHandler( object sender, StateChangedEventArgs e ) | |
Parameters
- sender
- specifies the object that raised event
- e
- an additional parameter that client can use to stop further processing of current activity, when applicable.