Table of Contents

Delegate NotificationHandler<TDetail, TContext>

Namespace
MaaFramework.Binding.Notification
Assembly
MaaFramework.Binding.Extensions.dll

Represents the method that will handle a notification when the notification provides detail.

public delegate void NotificationHandler<in TDetail, in TContext>(NotificationType type, TDetail detail, TContext context)

Parameters

type NotificationType

The type of the notification.

detail TDetail

An object that contains the notification detail.

context TContext

A context object.

Type Parameters

TDetail

The type of the notification detail generated by the notification.

TContext

The type of the context.

Extension Methods