Table of Contents

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

Event AppendedEvent

The AppendedEvent that was appended.

Result AppendResult

The AppendResult describing success, violations, or errors.

Properties

Event

The AppendedEvent that was appended.

public AppendedEvent Event { get; init; }

Property Value

AppendedEvent

Result

The AppendResult describing success, violations, or errors.

public AppendResult Result { get; init; }

Property Value

AppendResult