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

IReceiverClient.DeadLetterAsync 方法

定义

重载

DeadLetterAsync(String, IDictionary<String,Object>)

将消息移动到死信子队列。

DeadLetterAsync(String, String, String)

将消息移动到死信子队列。

DeadLetterAsync(String, IDictionary<String,Object>)

将消息移动到死信子队列。

public System.Threading.Tasks.Task DeadLetterAsync (string lockToken, System.Collections.Generic.IDictionary<string,object> propertiesToModify = default);
abstract member DeadLetterAsync : string * System.Collections.Generic.IDictionary<string, obj> -> System.Threading.Tasks.Task
Public Function DeadLetterAsync (lockToken As String, Optional propertiesToModify As IDictionary(Of String, Object) = Nothing) As Task

参数

lockToken
String

死信的相应消息的锁定标记。

propertiesToModify
IDictionary<String,Object>

移动到子队列时要修改的消息的属性。

返回

注解

只有在 设置为 PeekLockReceiveMode,才能在 中找到LockToken锁令牌。 若要从死信队列接收消息,需要具有相应路径的新 IMessageReceiver。 可以使用 FormatDeadLetterPath(String) 来帮助执行此操作。 此操作只能对此接收方收到的消息执行。

适用于

DeadLetterAsync(String, String, String)

将消息移动到死信子队列。

public System.Threading.Tasks.Task DeadLetterAsync (string lockToken, string deadLetterReason, string deadLetterErrorDescription = default);
abstract member DeadLetterAsync : string * string * string -> System.Threading.Tasks.Task
Public Function DeadLetterAsync (lockToken As String, deadLetterReason As String, Optional deadLetterErrorDescription As String = Nothing) As Task

参数

lockToken
String

死信的相应消息的锁定标记。

deadLetterReason
String

消息死胡同的原因。

deadLetterErrorDescription
String

消息死转的错误说明。

返回

注解

只有在 设置为 PeekLockReceiveMode,才能在 中找到LockToken锁令牌。 若要从死信队列接收消息,需要具有相应路径的新 IMessageReceiver。 可以使用 FormatDeadLetterPath(String) 来帮助执行此操作。 此操作只能对此接收方收到的消息执行。

适用于