Interface IEventSource<TEvent>
- Namespace
- MonkeyLoader.Events
- Assembly
- MonkeyLoader.dll
Defines the interface for sources of a certain type of events.
public interface IEventSource<out TEvent> where TEvent : SyncEvent
Type Parameters
TEvent
The type of events generated by this source.
Events
Dispatching
Needs to be invoked when an event is generated with a new instance of the event.
event EventDispatching<out TEvent>? Dispatching
Event Type
- EventDispatching<TEvent>