ChangeNotification
Represents a change notification to be sent to subscribers.
public sealed record ChangeNotification : IEquatable<ChangeNotification>
Constructors
ChangeNotification
public ChangeNotification(string SubscriptionId, SyncLogEntry Change)
Represents a change notification to be sent to subscribers.
| Parameter | Type | Description |
|---|---|---|
SubscriptionId |
String |
The subscription that triggered this notification. |
Change |
SyncLogEntry |
The change that occurred. |
Properties
SubscriptionId
public string SubscriptionId { get; init; }
The subscription that triggered this notification.
Change
public SyncLogEntry Change { get; init; }
The change that occurred.