An object that can be registered on elements of the specified type to react to any event type.
The same callback instance can be registered on multiple different elements, resulting in effective memory
sharing. If the element instance is needed by the callback code, an optional argument can be used to provide it.
Additional resources: EventCallback, EventCallbackDefinition, EventCallbackGroup<T0>
| Method | Description |
|---|---|
| As | Converts this callback to a more constrained callback type. |
| Register | Adds this callback's event handler to the given element. |
| Unregister | Removes this callback from the given element. |
| Operator | Description |
|---|---|
| EventCallbackDefinition<TElement> | Converts a given callback to a more constrained callback type. |