Class EventNotification<TEvent>
The generic implementation of event notification.
Inheritance
System.Object
EventNotification<TEvent>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: MediatorForge.CQRS.Notifications
Assembly: MediatorForge.dll
Syntax
public class EventNotification<TEvent> : INotification, IEquatable<EventNotification<TEvent>>
Type Parameters
Name | Description |
---|---|
TEvent | The event type of |
Constructors
| Improve this Doc View SourceEventNotification(TEvent)
The generic implementation of event notification.
Declaration
public EventNotification(TEvent Event)
Parameters
Type | Name | Description |
---|---|---|
TEvent | Event | The event data |
Properties
| Improve this Doc View SourceEvent
Declaration
public TEvent Event { get; set; }
Property Value
Type | Description |
---|---|
TEvent |
Implements
MediatR.INotification
System.IEquatable<T>