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