ข้ามไปยังเนื้อหา

Interface IDomainEvent

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Abstractions.EventSourcing
Assembly: Cephalon.Abstractions.dll

Represents one immutable domain event stored in an append-only stream.

public interface IDomainEvent

Gets the time at which the event occurred in UTC.

DateTime OccurredAtUtc { get; }

DateTime

Gets the stable stream identifier that owns the event.

string StreamId { get; }

string

Gets the optimistic stream version assigned to the event.

long StreamVersion { get; }

long