Class InboundLogEntry
The entity stored in the inbound log table.
Inherited Members
Namespace: Silverback.Database.Model
Assembly: Silverback.Integration.dll
Syntax
public class InboundLogEntry
Properties
| Improve this doc View sourceConsumed
Gets or sets the datetime when the message was consumed.
Declaration
public DateTime Consumed { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
ConsumerGroupName
Gets or sets the unique consumer group name of the consumer that received and processed the message.
Declaration
[Key]
[MaxLength(300)]
public string ConsumerGroupName { get; set; }
Property Value
Type | Description |
---|---|
string |
EndpointName
Gets or sets the name of the endpoint the message was consumed from.
Declaration
[Key]
[MaxLength(300)]
public string EndpointName { get; set; }
Property Value
Type | Description |
---|---|
string |
MessageId
Gets or sets the unique identifier of the inbound message.
Declaration
[Key]
[MaxLength(300)]
public string MessageId { get; set; }
Property Value
Type | Description |
---|---|
string |