如何检索 MSMQ 消息的 AbortCount?
我正在事务中从 MSMQ 检索消息。如果应用程序由于某种原因无法处理它们,则会中止事务。
一旦事务被中止,消息就会返回到队列中。如果再次检索消息,是否有办法知道该消息之前是否被中止?
通过MMC(MSMQ UI),您可以查看消息的属性以了解消息被中止的次数。
有没有办法以编程方式获取这个值?
I'm retrieving messages from a MSMQ in a transaction. If the application cannot process them for whatever reason, then it aborts the transaction.
Once the transaction is aborted the message goes back into the queue. If the message is retrieved again, is there a way to know if the message was previously aborted?
Through the MMC (MSMQ UI), you can view the properties of the message to see how many times the message was aborted.
Is there a way to get this value programmatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 MSDN 站点:
包含示例的页面位于此处。
From the MSDN site:
The page with the examples is here.