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

Class EntityFrameworkInboxEntry

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

Namespace: Cephalon.Data.EntityFramework.Modeling
Assembly: Cephalon.Data.EntityFramework.dll

Represents one processed inbound message row stored through the Entity Framework data companion pack.

public sealed class EntityFrameworkInboxEntry

objectEntityFrameworkInboxEntry

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

Initializes a new instance of the class.

public EntityFrameworkInboxEntry()

Gets or sets the logical channel or source identifier.

public string ChannelId { get; set; }

string

Gets or sets the payload content type when one is known.

public string? ContentType { get; set; }

string?

Gets or sets the correlation identifier associated with the message.

public string? CorrelationId { get; set; }

string?

Gets or sets the serialized message headers payload.

public string HeadersJson { get; set; }

string

Gets or sets the stable inbound message identifier.

public string Id { get; set; }

string

Gets or sets the logical message type identifier.

public string MessageType { get; set; }

string

Gets or sets the serialized message metadata payload.

public string MetadataJson { get; set; }

string

Gets or sets the serialized payload that was received.

public string Payload { get; set; }

string

Gets or sets the time at which the inbox row was marked as processed.

public DateTimeOffset ProcessedAtUtc { get; set; }

DateTimeOffset

Gets or sets the time at which the message was received.

public DateTimeOffset ReceivedAtUtc { get; set; }

DateTimeOffset

Gets or sets the tenant identifier associated with the message.

public string? TenantId { get; set; }

string?