Interface INotificationHandler<TNotification>
Defines a handler for a notification.
Namespace: Umbraco.Cms.Core.Events
Assembly: Umbraco.Core.dll
Syntax
public interface INotificationHandler<in TNotification>
where TNotification : INotification
Type Parameters
Name | Description |
---|---|
TNotification | The type of notification being handled. |
Methods
View SourceHandle(TNotification)
Handles a notification
Declaration
void Handle(TNotification notification)
Parameters
Type | Name | Description |
---|---|---|
TNotification | notification | The notification |