Class AppendedEventWithResult
- Namespace
- Cratis.Chronicle.EventSequences
- Assembly
- Cratis.Chronicle.dll
Represents an event that was appended to an event sequence together with the result of the operation.
public record AppendedEventWithResult : IEquatable<AppendedEventWithResult>
- Inheritance
-
AppendedEventWithResult
- Implements
- Inherited Members
Constructors
AppendedEventWithResult(AppendedEvent, AppendResult)
Represents an event that was appended to an event sequence together with the result of the operation.
public AppendedEventWithResult(AppendedEvent Event, AppendResult Result)
Parameters
EventAppendedEventThe AppendedEvent that was appended.
ResultAppendResultThe AppendResult describing success, violations, or errors.
Properties
Event
The AppendedEvent that was appended.
public AppendedEvent Event { get; init; }
Property Value
Result
The AppendResult describing success, violations, or errors.
public AppendResult Result { get; init; }