Show / Hide Table of Contents

    Class InboundLogEntry

    The entity stored in the inbound log table.

    Inheritance
    object
    InboundLogEntry
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Silverback.Database.Model
    Assembly: Silverback.Integration.dll
    Syntax
    public class InboundLogEntry

    Properties

    | Improve this doc View source

    Consumed

    Gets or sets the datetime when the message was consumed.

    Declaration
    public DateTime Consumed { get; set; }
    Property Value
    Type Description
    DateTime
    | Improve this doc View source

    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
    | Improve this doc View source

    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
    | Improve this doc View source

    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
    • Improve this doc
    • View source
    GitHub E-Mail
    ↑ Back to top © 2020 Sergio Aquilini