![]() |
Diffusion .NET Classic API - Core and Common
5.9.4
|
Helper class for raising events. More...
Static Public Member Functions | |
static void | Raise< T > (this EventHandler< T > handler, object sender, T args) |
Helper method to raise an event handler call. Performs null checking on the handler prior to calling. More... | |
static void | RaiseAsync< T > (this EventHandler< T > handler, object sender, T args) |
Helper method to (asynchronously) raise an event handler call. Performs null checking on the handler prior to calling. More... | |
Helper class for raising events.
|
static |
Helper method to raise an event handler call. Performs null checking on the handler prior to calling.
T |
handler | |
sender | |
args |
Exception | A delegate callback throws an exception. |
|
static |
Helper method to (asynchronously) raise an event handler call. Performs null checking on the handler prior to calling.
T |
handler | |
sender | |
args |
T | : | EventArgs |