Interface ICancelableEventSource<TEvent>
- Namespace
- MonkeyLoader.Events
- Assembly
- MonkeyLoader.dll
Defines the interface for sources of a certain type of cancelable events.
public interface ICancelableEventSource<out TEvent> where TEvent : CancelableSyncEvent
Type Parameters
TEvent
The type of cancelable events generated by this source.
Events
Dispatching
Needs to be invoked when an event is generated with a new instance of the cancelable event.
event CancelableEventDispatching<out TEvent>? Dispatching
Event Type
- CancelableEventDispatching<TEvent>
Remarks
When the event's Canceled
property is true
, the default action should be prevented from happening.