你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
QueueClient.UpdateMessage 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
UpdateMessage(String, String, BinaryData, TimeSpan, CancellationToken) |
更改消息的可见性超时和内容。 消息必须采用某种格式,以便可以包含在具有 UTF-8 编码的 XML 请求中。 否则 MessageEncoding ,可以将 选项设置为 以 Base64 处理不合规的消息。 对于版本 2011-08-18 及更新版本,编码的消息大小最多可为 64 KiB,或以前版本的大小为 8 KiB。 有关详细信息,请参阅 更新消息。 |
UpdateMessage(String, String, String, TimeSpan, CancellationToken) |
更改消息的可见性超时和内容。 消息必须采用某种格式,以便可以包含在具有 UTF-8 编码的 XML 请求中。 否则 MessageEncoding ,可以将 选项设置为 以 Base64 处理不合规的消息。 对于版本 2011-08-18 及更新版本,编码的消息大小最多可为 64 KiB,或以前版本的大小为 8 KiB。 有关详细信息,请参阅 更新消息。 |
UpdateMessage(String, String, BinaryData, TimeSpan, CancellationToken)
- Source:
- QueueClient.cs
- Source:
- QueueClient.cs
更改消息的可见性超时和内容。
消息必须采用某种格式,以便可以包含在具有 UTF-8 编码的 XML 请求中。 否则 MessageEncoding ,可以将 选项设置为 以 Base64 处理不合规的消息。 对于版本 2011-08-18 及更新版本,编码的消息大小最多可为 64 KiB,或以前版本的大小为 8 KiB。
有关详细信息,请参阅 更新消息。
public virtual Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt> UpdateMessage (string messageId, string popReceipt, BinaryData message, TimeSpan visibilityTimeout = default, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateMessage : string * string * BinaryData * TimeSpan * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt>
override this.UpdateMessage : string * string * BinaryData * TimeSpan * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt>
Public Overridable Function UpdateMessage (messageId As String, popReceipt As String, message As BinaryData, Optional visibilityTimeout As TimeSpan = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of UpdateReceipt)
参数
- messageId
- String
要更新的消息的 ID。
- popReceipt
- String
必需。 指定从先前调用“获取消息”或“更新消息”操作返回的有效弹出回执值。
- message
- BinaryData
可选。 更新的消息。
- visibilityTimeout
- TimeSpan
必需。 指定新的可见性超时值(秒),它相对于服务器时间。 新值必须大于或等于 0,但不能大于 7 天。 消息的可见性超时不能设置为晚于到期时间的值。 可以更新消息,直到将其删除或已过期。
- cancellationToken
- CancellationToken
可选的 CancellationToken。
返回
注解
默认情况下,此版本的库不对消息进行编码。 Base64 是以前的 v11 库中的默认行为。 请参阅 CloudQueue.EncodeMessage。
适用于
UpdateMessage(String, String, String, TimeSpan, CancellationToken)
- Source:
- QueueClient.cs
- Source:
- QueueClient.cs
更改消息的可见性超时和内容。
消息必须采用某种格式,以便可以包含在具有 UTF-8 编码的 XML 请求中。 否则 MessageEncoding ,可以将 选项设置为 以 Base64 处理不合规的消息。 对于版本 2011-08-18 及更新版本,编码的消息大小最多可为 64 KiB,或以前版本的大小为 8 KiB。
有关详细信息,请参阅 更新消息。
public virtual Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt> UpdateMessage (string messageId, string popReceipt, string messageText = default, TimeSpan visibilityTimeout = default, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateMessage : string * string * string * TimeSpan * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt>
override this.UpdateMessage : string * string * string * TimeSpan * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Queues.Models.UpdateReceipt>
Public Overridable Function UpdateMessage (messageId As String, popReceipt As String, Optional messageText As String = Nothing, Optional visibilityTimeout As TimeSpan = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of UpdateReceipt)
参数
- messageId
- String
要更新的消息的 ID。
- popReceipt
- String
必需。 指定从先前调用“获取消息”或“更新消息”操作返回的有效弹出回执值。
- messageText
- String
可选。 更新了消息文本。
- visibilityTimeout
- TimeSpan
必需。 指定新的可见性超时值(秒),它相对于服务器时间。 新值必须大于或等于 0,但不能大于 7 天。 消息的可见性超时不能设置为晚于到期时间的值。 可以更新消息,直到将其删除或已过期。
- cancellationToken
- CancellationToken
可选的 CancellationToken。
返回
注解
默认情况下,此版本的库不对消息进行编码。 Base64 是以前的 v11 库中的默认行为。 请参阅 CloudQueue.EncodeMessage。