Table of Contents

Interface ICancelableEventHandler<TEvent>

Namespace
MonkeyLoader.Events
Assembly
MonkeyLoader.dll

Defines the interface for synchronous event handlers that support cancelation.

public interface ICancelableEventHandler<in TEvent> : IPrioritizable where TEvent : CancelableSyncEvent

Type Parameters

TEvent

The type of cancelable events handled.

Inherited Members

Properties

SkipCanceled

Gets whether this handler should be skipped for events that have been canceled by a previous event handler.

bool SkipCanceled { get; }

Property Value

bool

Methods

Handle(TEvent)

Handles the given cancelable synchronous event based on its data.

void Handle(TEvent eventData)

Parameters

eventData TEvent

An object containing all the relevant information for the cancelable event.

Remarks

When this method sets eventData.Canceled = true, the default action should be prevented from happening and further event handlers may be skipped.