Interface IQueueMessage
Represents a message in a queue.
Namespace: Innovt.Cloud.Queue
Assembly: Innovt.Cloud.dll
Syntax
public interface IQueueMessage
Properties
| Edit this page View SourceApproximateFirstReceiveTimestamp
Gets or sets the approximate timestamp when the message was first received.
Declaration
double? ApproximateFirstReceiveTimestamp { get; set; }
Property Value
Type | Description |
---|---|
double? |
ApproximateReceiveCount
Gets or sets the approximate number of times the message has been received.
Declaration
int? ApproximateReceiveCount { get; set; }
Property Value
Type | Description |
---|---|
int? |
Attributes
Gets or sets the attributes associated with the message in the form of key-value pairs.
Declaration
Dictionary<string, string> Attributes { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
MessageId
Gets or sets the unique identifier of the message.
Declaration
string MessageId { get; set; }
Property Value
Type | Description |
---|---|
string |
ReceiptHandle
Gets or sets the receipt handle for the message.
Declaration
string ReceiptHandle { get; set; }
Property Value
Type | Description |
---|---|
string |
TraceId
Gets or sets the trace ID associated with the message.
Declaration
string TraceId { get; set; }
Property Value
Type | Description |
---|---|
string |