Interface ICancelableAsyncEventHandler<TEvent>
- Namespace
- MonkeyLoader.Events
- Assembly
- MonkeyLoader.dll
Defines the interface for async event handlers that support cancelation.
public interface ICancelableAsyncEventHandler<in TEvent> : IPrioritizable where TEvent : CancelableAsyncEvent
Type Parameters
TEvent
The type of cancelable async events handled.
- Inherited Members
Properties
SkipCanceled
Gets whether this handler should be skipped for async events that have been canceled by a previous async event handler.
bool SkipCanceled { get; }
Property Value
Methods
Handle(TEvent)
Handles the given cancelable async event based on its data.
Task Handle(TEvent eventData)
Parameters
eventData
TEventAn object containing all the relevant information for the async event.
Returns
Remarks
When this method sets
, the default action should be prevented from happening and further
async event handlers may be skipped.eventData
.Canceled
= true