你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
BrokeredMessage.DeadLetterAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DeadLetterAsync() |
以异步方式将消息移动到死信队列。 |
DeadLetterAsync(IDictionary<String,Object>) |
以异步方式将消息移动到死信队列。 |
DeadLetterAsync(String, String) |
以异步方式将消息移动到死信队列。 |
DeadLetterAsync()
以异步方式将消息移动到死信队列。
public System.Threading.Tasks.Task DeadLetterAsync ();
member this.DeadLetterAsync : unit -> System.Threading.Tasks.Task
Public Function DeadLetterAsync () As Task
返回
异步操作的结果。
适用于
DeadLetterAsync(IDictionary<String,Object>)
以异步方式将消息移动到死信队列。
public System.Threading.Tasks.Task DeadLetterAsync (System.Collections.Generic.IDictionary<string,object> propertiesToModify);
member this.DeadLetterAsync : System.Collections.Generic.IDictionary<string, obj> -> System.Threading.Tasks.Task
Public Function DeadLetterAsync (propertiesToModify As IDictionary(Of String, Object)) As Task
参数
- propertiesToModify
- IDictionary<String,Object>
要修改的属性的键值对集合。
返回
异步操作的结果。
适用于
DeadLetterAsync(String, String)
以异步方式将消息移动到死信队列。
public System.Threading.Tasks.Task DeadLetterAsync (string deadLetterReason, string deadLetterErrorDescription);
member this.DeadLetterAsync : string * string -> System.Threading.Tasks.Task
Public Function DeadLetterAsync (deadLetterReason As String, deadLetterErrorDescription As String) As Task
参数
- deadLetterReason
- String
消息死信的原因。
- deadLetterErrorDescription
- String
消息死信的说明信息。
返回
异步操作的结果。