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
Event
objectThe content of the vent.
Context
EventContextEventContext 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; }