你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

QueueMessage Class

Definition

A Message object which can be stored in a Queue.

public class QueueMessage
type QueueMessage = class
Public Class QueueMessage
Inheritance
QueueMessage

Properties

Body

The content of the Message.

DequeueCount

The number of times the message has been dequeued.

ExpiresOn

The time that the Message will expire and be automatically deleted.

InsertedOn

The time the Message was inserted into the Queue.

MessageId

The Id of the Message.

NextVisibleOn

The time that the message will again become visible in the Queue.

PopReceipt

This value is required to delete the Message. If deletion fails using this popreceipt then the message has been dequeued by another client.

Methods

Update(UpdateReceipt)

Update a UpdateReceipt after calling UpdateMessageAsync(String, String, BinaryData, TimeSpan, CancellationToken) with the resulting UpdateReceipt.

Applies to