Table of Contents

Delegate Handler<T>

Namespace
Cryville.EEW
Assembly
Cryville.EEW.dll
Represents the method that will handle an event when the event provides data.
public delegate void Handler<in T>(object sender, T e)

Parameters

sender object
The source of the event.
e T
The event data.

Type Parameters

T
The type of the event data.