Interface IEventEntity
The stored entity that contains the information about an event applied to a domain entity.
Namespace: Silverback.EventStore
Assembly: Silverback.EventSourcing.dll
Syntax
public interface IEventEntity
Properties
| Improve this doc View sourceClrType
Gets or sets the assembly qualified name of the event class.
Declaration
string ClrType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Sequence
Gets or sets the sequence number that is used to replay the messages in the right order.
Declaration
int Sequence { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SerializedEvent
Gets or sets the serialized event.
Declaration
string SerializedEvent { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Timestamp
Gets or sets the datetime when the event occured.
Declaration
DateTime Timestamp { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |