Table of Contents

Class QueueMessage

Namespace
Microsoft.WindowsAzure.Storage.Queue.Protocol
Assembly
Microsoft.WindowsAzure.Storage.dll

Represents a message retrieved from a queue.

public class QueueMessage
Inheritance
QueueMessage
Inherited Members

Properties

DequeueCount

Gets the number of times this message has been dequeued.

public int DequeueCount { get; }

Property Value

int

The dequeue count.

ExpirationTime

Gets the message expiration time.

public DateTimeOffset? ExpirationTime { get; }

Property Value

DateTimeOffset?

The message expiration time.

Id

Gets the message ID.

public string Id { get; }

Property Value

string

The message ID.

InsertionTime

Gets the time the message was added to the queue.

public DateTimeOffset? InsertionTime { get; }

Property Value

DateTimeOffset?

The message insertion time.

NextVisibleTime

Gets the time the message is next visible.

public DateTimeOffset? NextVisibleTime { get; }

Property Value

DateTimeOffset?

The time the message is next visible.

PopReceipt

Gets the pop receipt for the message.

public string PopReceipt { get; }

Property Value

string

The message's pop receipt.

Text

Gets the text of the message.

public string Text { get; }

Property Value

string

The message text.