Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
NotificationEventsArgs.cs
2{
8 public delegate void NotificationEventsHandler(object? Sender, NotificationEventsArgs e);
9
14 public class NotificationEventsArgs(NotificationEvent[] Events) : EventArgs()
15 {
19 public NotificationEvent[] Events { get; } = Events;
20 }
21}
abstract class NotificationEvent()
Abstract base class of notification events.
class NotificationEventsArgs(NotificationEvent[] Events)
Event argument for notification events.
delegate void NotificationEventsHandler(object? Sender, NotificationEventsArgs e)
Delegate for notification events handlers.