Class TableSyncedEvent
Published after a table is synchronized (created or altered).
public record TableSyncedEvent : IEvent, IEquatable<TableSyncedEvent>
- Inheritance
-
TableSyncedEvent
- Implements
-
IEvent
- Inherited Members
Constructors
TableSyncedEvent(string, string, bool, List<string>, TimeSpan)
Published after a table is synchronized (created or altered).
public TableSyncedEvent(string ConnectionId, string TableName, bool Created, List<string> Operations, TimeSpan Duration)
Parameters
Properties
ConnectionId
public string ConnectionId { get; init; }
Property Value
Created
public bool Created { get; init; }
Property Value
Duration
public TimeSpan Duration { get; init; }
Property Value
Operations
public List<string> Operations { get; init; }
Property Value
TableName
public string TableName { get; init; }