Class EventAndContext
Represents an event and its context.
public record EventAndContext : IEquatable<EventAndContext>
- Inheritance
-
EventAndContext
- Implements
- Inherited Members
Constructors
EventAndContext(object, EventContext)
Represents an event and its context.
public EventAndContext(object Event, EventContext Context)
Parameters
EventobjectThe content of the vent.
ContextEventContextEventContext for the event.
Properties
Context
EventContext for the event.
public EventContext Context { get; init; }
Property Value
Event
The content of the vent.
public object Event { get; init; }