你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
BrokeredMessage.DeadLetter 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DeadLetter() |
将消息移动到死信队列。 |
DeadLetter(IDictionary<String,Object>) |
将消息移动到死信队列。 |
DeadLetter(String, String) |
将消息移动到死信队列。 |
DeadLetter()
将消息移动到死信队列。
public void DeadLetter ();
member this.DeadLetter : unit -> unit
Public Sub DeadLetter ()
例外
当消息处于已释放状态或接收消息的接收方处于已释放状态时引发。
在对尚未从消息服务器接收的消息调用时引发,或者在尚未以速览锁定模式接收的消息上调用时引发。
适用于
DeadLetter(IDictionary<String,Object>)
将消息移动到死信队列。
public void DeadLetter (System.Collections.Generic.IDictionary<string,object> propertiesToModify);
member this.DeadLetter : System.Collections.Generic.IDictionary<string, obj> -> unit
Public Sub DeadLetter (propertiesToModify As IDictionary(Of String, Object))
参数
- propertiesToModify
- IDictionary<String,Object>
要修改的属性的键值对集合。
适用于
DeadLetter(String, String)
将消息移动到死信队列。
public void DeadLetter (string deadLetterReason, string deadLetterErrorDescription);
member this.DeadLetter : string * string -> unit
Public Sub DeadLetter (deadLetterReason As String, deadLetterErrorDescription As String)
参数
- deadLetterReason
- String
消息死信的原因。
- deadLetterErrorDescription
- String
消息死信的说明信息。
例外
当消息处于已释放状态或接收消息的接收方处于已释放状态时引发。
在对尚未从消息服务器接收的消息调用时引发,或者在尚未以速览锁定模式接收的消息上调用时引发。
当接收消息的队列或订阅不再存在于消息服务器中时引发。
操作超时时引发。超时期限通过 MessagingFactorySettings初始化。 如果超时值相对较低,可能需要增加 的值 OperationTimeout 以避免此异常。
如果消息的锁已过期,则引发。 LockDuration 是一个实体范围的设置,可以通过 和 LockDuration 分别针对队列和订阅进行初始化LockDuration。
如果会话上的锁已过期,则引发。 会话锁定持续时间与消息 LockDuration 相同,是实体范围的设置。 可以通过 和 分别为队列和LockDuration订阅初始化LockDuration它。